Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sort file names.
[simgrid.git] / buildtools / Cmake / MakeLib.cmake
1 ### Make Libs
2
3 ###############################
4 # Declare the library content #
5 ###############################
6 # If we want supernovae, rewrite the libs' content to use it
7 include(${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/Supernovae.cmake)
8
9 # Actually declare our libraries
10
11 add_library(simgrid SHARED ${simgrid_sources})
12 set_target_properties(simgrid PROPERTIES VERSION ${libsimgrid_version})
13
14 if(enable_lib_static)
15   add_library(simgrid_static STATIC ${simgrid_sources})
16 endif()
17
18 if(enable_smpi)
19   add_library(smpi SHARED ${SMPI_SRC})
20   set_target_properties(smpi PROPERTIES VERSION ${libsmpi_version})
21   if(enable_lib_static)
22     add_library(smpi_static STATIC ${SMPI_SRC})
23   endif()
24 endif()
25
26 add_dependencies(simgrid maintainer_files)
27
28 # if supernovaeing, we need some depends to make sure that the source gets generated
29 if (enable_supernovae)
30   add_dependencies(simgrid ${CMAKE_CURRENT_BINARY_DIR}/src/supernovae_sg.c)
31   if(enable_lib_static)
32     add_dependencies(simgrid_static ${CMAKE_CURRENT_BINARY_DIR}/src/supernovae_sg.c)
33   endif()
34
35   if(enable_smpi)
36     add_dependencies(smpi ${CMAKE_CURRENT_BINARY_DIR}/src/supernovae_smpi.c)
37     if(enable_lib_static)
38       add_dependencies(smpi_static ${CMAKE_CURRENT_BINARY_DIR}/src/supernovae_smpi.c)
39     endif()
40   endif()
41 endif()
42
43 # Compute the dependencies of SimGrid
44 #####################################
45 set(SIMGRID_DEP "-lm -lpcre")
46
47 if(pthread)
48   if(${CONTEXT_THREADS})
49     SET(SIMGRID_DEP "${SIMGRID_DEP} -pthread")
50   endif()
51 endif()
52
53 if(HAVE_LUA)
54   ADD_CUSTOM_TARGET(link_simgrid_lua ALL
55     DEPENDS     simgrid
56     ${CMAKE_BINARY_DIR}/examples/lua/simgrid.${LIB_EXE}
57     ${CMAKE_BINARY_DIR}/examples/msg/masterslave/simgrid.${LIB_EXE}
58     ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE}
59     )
60   add_custom_command(
61     OUTPUT      ${CMAKE_BINARY_DIR}/examples/lua/simgrid.${LIB_EXE}
62     ${CMAKE_BINARY_DIR}/examples/msg/masterslave/simgrid.${LIB_EXE}
63     ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE}
64     COMMAND ${CMAKE_COMMAND} -E remove -f ${CMAKE_BINARY_DIR}/examples/lua/simgrid.${LIB_EXE} # if it exists, creating the link fails. So cleanup before hand
65     COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/examples/lua/
66     COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_BINARY_DIR}/lib/libsimgrid.${LIB_EXE} ${CMAKE_BINARY_DIR}/examples/lua/simgrid.${LIB_EXE} #for test
67
68     COMMAND ${CMAKE_COMMAND} -E remove -f ${CMAKE_BINARY_DIR}/examples/msg/masterslave/simgrid.${LIB_EXE} # if it exists, creating the link fails. So cleanup before hand
69     COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/examples/msg/masterslave/
70     COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_BINARY_DIR}/lib/libsimgrid.${LIB_EXE} ${CMAKE_BINARY_DIR}/examples/msg/masterslave/simgrid.${LIB_EXE} #for test
71
72     COMMAND ${CMAKE_COMMAND} -E remove -f ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE} # if it exists, creating the link fails. So cleanup before hand
73     COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/examples/simdag/
74     COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_BINARY_DIR}/lib/libsimgrid.${LIB_EXE} ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE} #for test
75     )
76   SET(SIMGRID_DEP "${SIMGRID_DEP} -l${LIB_LUA_NAME}")
77 endif()
78
79 if(HAVE_GRAPHVIZ)
80   if(HAVE_CGRAPH_LIB)
81     SET(SIMGRID_DEP "${SIMGRID_DEP} -lcgraph")
82   else()
83     if(HAVE_AGRAPH_LIB)
84       SET(SIMGRID_DEP "${SIMGRID_DEP} -lagraph -lcdt")
85     endif()
86   endif()
87 endif()
88
89 if(HAVE_GTNETS)
90   SET(SIMGRID_DEP "${SIMGRID_DEP} -lgtnets")
91 endif()
92
93 if(HAVE_MC)
94   # The availability of libunwind was checked in CompleteInFiles.cmake
95   #   (that includes FindLibunwind.cmake), so simply load it now.
96   
97   # This supposes that the host machine is either an AMD or a X86.
98   # This is deeply wrong, and should be fixed by manually loading -lunwind-PLAT (FIXME)
99   if(PROCESSOR_x86_64)
100     SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind-x86_64")
101   else()    
102     SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind-x86")
103   endif()
104 endif()
105
106 if(MMALLOC_WANT_OVERRIDE_LEGACY AND HAVE_GNU_LD)
107   SET(SIMGRID_DEP "${SIMGRID_DEP} -ldl")
108 endif()
109
110 if(HAVE_NS3)
111   if(${NS3_VERSION} EQUAL 310)
112     SET(SIMGRID_DEP "${SIMGRID_DEP} -lns3")
113     set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_NS3_3_10")
114     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D_NS3_3_10")
115   else()
116     SET(SIMGRID_DEP "${SIMGRID_DEP} -lns3-core -lns3-csma -lns3-point-to-point -lns3-internet -lns3-applications")
117   endif()
118 endif()
119
120 if(HAVE_POSIX_GETTIME)
121   SET(SIMGRID_DEP "${SIMGRID_DEP} -lrt")
122 endif()
123
124 target_link_libraries(simgrid   ${SIMGRID_DEP})
125
126 # Compute the dependencies of SMPI
127 ##################################
128 set(SMPI_DEP "")
129 if(APPLE)
130   set(SMPI_DEP "-Wl,-U -Wl,_smpi_simulated_main")
131 endif()
132 if(enable_smpi)
133   target_link_libraries(smpi    simgrid ${SMPI_DEP})
134 endif()
135
136 # Pass dependencies to static libs
137 ##################################
138 if(enable_lib_static)
139   target_link_libraries(simgrid_static  ${SIMGRID_DEP})
140   add_dependencies(simgrid_static maintainer_files)
141   set_target_properties(simgrid_static PROPERTIES OUTPUT_NAME simgrid)
142   if(enable_smpi)
143     target_link_libraries(smpi_static   simgrid ${SMPI_DEP})
144     set_target_properties(smpi_static PROPERTIES OUTPUT_NAME smpi)
145   endif()
146 endif()
147
148 # Dependencies from maintainer mode
149 ###################################
150 if(enable_maintainer_mode AND BISON_EXE AND LEX_EXE)
151   add_dependencies(simgrid automaton_generated_src)
152 endif()