Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'with_java'
[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 if(enable_java)
27   add_library(SG_java SHARED ${JMSG_C_SRC})
28   set_target_properties(SG_java PROPERTIES VERSION ${libSG_java_version})
29   get_target_property(COMMON_INCLUDES SG_java INCLUDE_DIRECTORIES)
30   set_target_properties(SG_java PROPERTIES
31     INCLUDE_DIRECTORIES "${COMMON_INCLUDES};${JNI_INCLUDE_DIRS}")
32   add_dependencies(SG_java simgrid)
33
34   if(WIN32)
35     get_target_property(SIMGRID_LIB_NAME_NAME SG_java LIBRARY_OUTPUT_NAME)
36     set_target_properties(SG_java PROPERTIES
37       LINK_FLAGS "-Wl,--subsystem,windows,--kill-at ${SIMGRID_LIB_NAME}"
38       PREFIX "")
39     find_path(PEXPORTS_PATH NAMES pexports.exe PATHS NO_DEFAULT_PATHS)
40     message(STATUS "pexports: ${PEXPORTS_PATH}")
41     if(PEXPORTS_PATH)
42       add_custom_command(TARGET SG_java POST_BUILD
43         COMMAND ${PEXPORTS_PATH}/pexports.exe ${CMAKE_BINARY_DIR}/SG_java.dll > ${CMAKE_BINARY_DIR}/SG_java.def)
44     endif(PEXPORTS_PATH)
45   else()
46     target_link_libraries(SG_java simgrid)
47   endif()
48
49   set(CMAKE_JAVA_TARGET_OUTPUT_NAME simgrid)
50   set(MANIFEST_FILE ${CMAKE_HOME_DIRECTORY}/src/bindings/java/MANIFEST.MF)
51   add_jar(SG_java_jar ${JMSG_JAVA_SRC})
52   add_custom_command(TARGET SG_java_jar POST_BUILD
53     COMMENT "Update file MANIFEST.MF in simgrid.jar..."
54     DEPENDS ${MANIFEST_FILE}
55     WORKING_DIRECTORY "${CMAKE_BINARY_DIR}"
56     COMMAND ${JAVA_ARCHIVE} -uvmf ${MANIFEST_FILE} simgrid.jar
57     )
58
59   if(CMAKE_SYSTEM_PROCESSOR MATCHES ".86")
60     if(${ARCH_32_BITS})
61       set(JSG_BUNDLE "NATIVE/${CMAKE_SYSTEM_NAME}/x86/")
62     else()
63       set(JSG_BUNDLE "NATIVE/${CMAKE_SYSTEM_NAME}/amd64/")
64     endif()
65   else()
66     error("Unknown system type. Processor: ${CMAKE_SYSTEM_PROCESSOR}; System: ${CMAKE_SYSTEM_NAME}")
67   endif()
68   message("Native libraries bundeled into: ${JSG_BUNDLE}")
69
70   add_custom_command(TARGET SG_java_jar POST_BUILD
71     COMMENT "Combine native libraries in simgrid.jar..."
72     DEPENDS simgrid SG_java
73     WORKING_DIRECTORY "${CMAKE_BINARY_DIR}"
74     COMMAND ${CMAKE_COMMAND} -E remove_directory "NATIVE"
75     COMMAND ${CMAKE_COMMAND} -E make_directory "${JSG_BUNDLE}"
76     COMMAND ${CMAKE_COMMAND} -E copy ./lib/libsimgrid.so "${JSG_BUNDLE}"
77     COMMAND strip --strip-debug "${JSG_BUNDLE}/libsimgrid.so"
78     COMMAND ${CMAKE_COMMAND} -E copy ./lib/libSG_java.so "${JSG_BUNDLE}"
79     COMMAND strip --strip-debug "${JSG_BUNDLE}/libSG_java.so"
80     COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_HOME_DIRECTORY}/ChangeLog" "${JSG_BUNDLE}"
81     COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_HOME_DIRECTORY}/ChangeLog.SimGrid-java" "${JSG_BUNDLE}"
82     COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_HOME_DIRECTORY}/COPYING" "${JSG_BUNDLE}"
83     COMMAND ${JAVA_ARCHIVE} -uvf simgrid.jar "NATIVE"
84     )
85 endif()
86
87 add_dependencies(simgrid maintainer_files)
88
89 # if supernovaeing, we need some depends to make sure that the source gets generated
90 if (enable_supernovae)
91   add_dependencies(simgrid ${CMAKE_CURRENT_BINARY_DIR}/src/supernovae_sg.c)
92   if(enable_lib_static)
93     add_dependencies(simgrid_static ${CMAKE_CURRENT_BINARY_DIR}/src/supernovae_sg.c)
94   endif()
95
96   if(enable_smpi)
97     add_dependencies(smpi ${CMAKE_CURRENT_BINARY_DIR}/src/supernovae_smpi.c)
98     if(enable_lib_static)
99       add_dependencies(smpi_static ${CMAKE_CURRENT_BINARY_DIR}/src/supernovae_smpi.c)
100     endif()
101   endif()
102 endif()
103
104 # Compute the dependencies of SimGrid
105 #####################################
106 set(SIMGRID_DEP "-lm -lpcre")
107
108 if(pthread)
109   if(${CONTEXT_THREADS})
110     SET(SIMGRID_DEP "${SIMGRID_DEP} -pthread")
111   endif()
112 endif()
113
114 if(HAVE_LUA)
115   ADD_CUSTOM_TARGET(link_simgrid_lua ALL
116     DEPENDS     simgrid
117     ${CMAKE_BINARY_DIR}/examples/lua/simgrid.${LIB_EXE}
118     ${CMAKE_BINARY_DIR}/examples/msg/masterslave/simgrid.${LIB_EXE}
119     ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE}
120     )
121   add_custom_command(
122     OUTPUT      ${CMAKE_BINARY_DIR}/examples/lua/simgrid.${LIB_EXE}
123     ${CMAKE_BINARY_DIR}/examples/msg/masterslave/simgrid.${LIB_EXE}
124     ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE}
125     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
126     COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/examples/lua/
127     COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_BINARY_DIR}/lib/libsimgrid.${LIB_EXE} ${CMAKE_BINARY_DIR}/examples/lua/simgrid.${LIB_EXE} #for test
128
129     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
130     COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/examples/msg/masterslave/
131     COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_BINARY_DIR}/lib/libsimgrid.${LIB_EXE} ${CMAKE_BINARY_DIR}/examples/msg/masterslave/simgrid.${LIB_EXE} #for test
132
133     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
134     COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/examples/simdag/
135     COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_BINARY_DIR}/lib/libsimgrid.${LIB_EXE} ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE} #for test
136     )
137   SET(SIMGRID_DEP "${SIMGRID_DEP} -l${LIB_LUA_NAME}")
138 endif()
139
140 if(HAVE_GRAPHVIZ)
141   if(HAVE_CGRAPH_LIB)
142     SET(SIMGRID_DEP "${SIMGRID_DEP} -lcgraph")
143   else()
144     if(HAVE_AGRAPH_LIB)
145       SET(SIMGRID_DEP "${SIMGRID_DEP} -lagraph -lcdt")
146     endif()
147   endif()
148 endif()
149
150 if(HAVE_GTNETS)
151   SET(SIMGRID_DEP "${SIMGRID_DEP} -lgtnets")
152 endif()
153
154 if(HAVE_MC)
155   # The availability of libunwind was checked in CompleteInFiles.cmake
156   #   (that includes FindLibunwind.cmake), so simply load it now.
157   
158   # This supposes that the host machine is either an AMD or a X86.
159   # This is deeply wrong, and should be fixed by manually loading -lunwind-PLAT (FIXME)
160   if(PROCESSOR_x86_64)
161     SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind-x86_64")
162   else()    
163     SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind-x86")
164   endif()
165 endif()
166
167 if(MMALLOC_WANT_OVERRIDE_LEGACY AND HAVE_GNU_LD)
168   SET(SIMGRID_DEP "${SIMGRID_DEP} -ldl")
169 endif()
170
171 if(HAVE_NS3)
172   if(${NS3_VERSION} EQUAL 310)
173     SET(SIMGRID_DEP "${SIMGRID_DEP} -lns3")
174     set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_NS3_3_10")
175     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D_NS3_3_10")
176   else()
177     SET(SIMGRID_DEP "${SIMGRID_DEP} -lns3-core -lns3-csma -lns3-point-to-point -lns3-internet -lns3-applications")
178   endif()
179 endif()
180
181 if(HAVE_POSIX_GETTIME)
182   SET(SIMGRID_DEP "${SIMGRID_DEP} -lrt")
183 endif()
184
185 target_link_libraries(simgrid   ${SIMGRID_DEP})
186
187 # Compute the dependencies of SMPI
188 ##################################
189 set(SMPI_DEP "")
190 if(APPLE)
191   set(SMPI_DEP "-Wl,-U -Wl,_smpi_simulated_main")
192 endif()
193 if(enable_smpi)
194   target_link_libraries(smpi    simgrid ${SMPI_DEP})
195 endif()
196
197 # Pass dependencies to static libs
198 ##################################
199 if(enable_lib_static)
200   target_link_libraries(simgrid_static  ${SIMGRID_DEP})
201   add_dependencies(simgrid_static maintainer_files)
202   set_target_properties(simgrid_static PROPERTIES OUTPUT_NAME simgrid)
203   if(enable_smpi)
204     target_link_libraries(smpi_static   simgrid ${SMPI_DEP})
205     set_target_properties(smpi_static PROPERTIES OUTPUT_NAME smpi)
206   endif()
207 endif()
208
209 # Dependencies from maintainer mode
210 ###################################
211 if(enable_maintainer_mode AND BISON_EXE AND LEX_EXE)
212   add_dependencies(simgrid automaton_generated_src)
213 endif()