X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/66b0686fe441796325c3b5738b1b880d15ce1ea6..1a8e5af34045d9f65169ce4766b0131dfe7825f2:/doc/HelloWorld/CMakeLists.txt diff --git a/doc/HelloWorld/CMakeLists.txt b/doc/HelloWorld/CMakeLists.txt index cfeb96300f..99c2b582f3 100644 --- a/doc/HelloWorld/CMakeLists.txt +++ b/doc/HelloWorld/CMakeLists.txt @@ -3,39 +3,46 @@ cmake_minimum_required(VERSION 2.8) ### Need to set rc ccompiler before enable language if(WIN32) - SET(CMAKE_RC_COMPILER "windres") -endif(WIN32) + SET(CMAKE_RC_COMPILER "windres") + set(LIBRARIES_DEP simgrid pcre ws2_32 pthread) +else() + set(LIBRARIES_DEP simgrid pcre pthread) +endif() + +project(MY_SIMGRID_PROJECT C) -project(HelloWorld C) set(CMAKE_C_FLAGS "" CACHE TYPE INTERNAL FORCE) set(CMAKE_EXE_LINKER_FLAGS "" CACHE TYPE INTERNAL FORCE) ############################### # Test the build dependencies # ############################### -include(FindPCRE.cmake) +include(FindPcreWin.cmake) message(STATUS "Looking for lib Simgrid") if("$ENV{SIMGRID_ROOT}" STREQUAL "") - message(STATUS "Looking for lib Simgrid - Not found") - message(FATAL_ERROR "Simgrid not found, reinstall it or set SIMGRID_ROOT") -else("$ENV{SIMGRID_ROOT}" STREQUAL "") - link_directories($ENV{SIMGRID_ROOT}/lib) - include_directories($ENV{SIMGRID_ROOT}/include) - include_directories($ENV{SIMGRID_ROOT}/src) - include_directories($ENV{SIMGRID_ROOT}/src/include) - add_library(libsimgrid STATIC IMPORTED) - message(STATUS "Looking for lib Simgrid - found") -endif("$ENV{SIMGRID_ROOT}" STREQUAL "") + message(STATUS "Looking for lib Simgrid - Not found") + message(FATAL_ERROR "Simgrid not found, reinstall it or set SIMGRID_ROOT") +else() + link_directories($ENV{SIMGRID_ROOT}/lib) + include_directories($ENV{SIMGRID_ROOT}/include) + include_directories($ENV{SIMGRID_ROOT}/src) + include_directories($ENV{SIMGRID_ROOT}/src/include) + message(STATUS "Looking for lib Simgrid - found") +endif() -########### -# TARGETS # -########### +################ +# FIND TARGETS # +################ +file(GLOB SOURCE_FILE + RELATIVE ${CMAKE_HOME_DIRECTORY}/ + "*.c" + ) +string(REPLACE ".c" "" TARGET_NAME ${SOURCE_FILE}) -######################### -# add_executable # -# args1 target name # -# args2 sources # -######################### -add_executable(HelloWorld HelloWorld.c) -# Any targets need to be linked with simgrid and pcre -target_link_libraries(HelloWorld simgrid pcre) +foreach(target "${TARGET_NAME}") + add_executable(${target} "${target}.c") + message(STATUS "source_file: ${target}.c") + message(STATUS "target name: ${target}.exe") + # Any targets need to be linked with libraries + target_link_libraries(${target} ${LIBRARIES_DEP}) +endforeach(target ${SOURCE_FILE})