# CMakeLists.txt #################################################### # Written by JackCarterSmith, 2022 # This code is released under the RSE license. #################################################### # CMake requirement and general configuration cmake_minimum_required(VERSION 3.12) cmake_policy(VERSION 3.12) set(CMAKE_MODULE_PATH ${CMAKE_BINARY_DIR}) if(DEFINED ENV{MS_COMPATIBLE}) set(CMAKE_GNUtoMS ON) # Enable compatibility level to exported libraries endif() include(CheckIncludeFile) include(CheckCSourceCompiles) add_definitions(-DCONF_NO_GL) # Used for obj-lib to not compile GL part # Project definition if(DEFINED ENV{CI}) # Jenkins CI integration mode project(rse-model VERSION $ENV{CI_VERSION}.$ENV{CI_BUILD_NUMBER} DESCRIPTION "RogueSquadron Extractor - Model" LANGUAGES C) set(RSE_MOD_NAME $ENV{CI_OUTPUT_NAME}-${PROJECT_VERSION}) else() # Standalone project mode, should not be used for release. project(rse-model VERSION 1.0.0 DESCRIPTION "RogueSquadron Extractor - Model" LANGUAGES C) set(RSE_MOD_NAME RSE_Model-${PROJECT_VERSION}) endif() # Push compile infos to source configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/config.h.in ${CMAKE_CURRENT_SOURCE_DIR}/src/config.h @ONLY) # Import needed packages and references their include path #find_package(GLEW REQUIRED) # Enable when GL rendering is ready #include_directories(${GLEW_INCLUDE_DIR}) # Define src/headers files FILE(GLOB_RECURSE RSE_MOD_SOURCES src/*.c) FILE(GLOB_RECURSE RSE_MOD_HEADERS src/*.h) SOURCE_GROUP("Source Files" FILES ${RSE_MOD_SOURCES}) SOURCE_GROUP("Header Files" FILES ${RSE_MOD_HEADERS}) # Building instructions for RSE-Model if(DEFINED ENV{RSE-WS}) set(CMAKE_BUILD_TYPE DEBUG) endif() #include_directories(${CMAKE_CURRENT_SOURCE_DIR}) add_executable(rse-model ${RSE_MOD_SOURCES} ${RSE_MOD_HEADERS}) # Set the inputs for the compiler (srcs&hrds) set_property(TARGET rse-model PROPERTY C_STANDARD 90) set_target_properties(rse-model PROPERTIES OUTPUT_NAME ${RSE_MOD_NAME}) # Define the executable file name # Link externals libraries to the linker if(MSVC) # msvc does not append 'lib' - do it here to have consistent name #set_target_properties(rse-model PROPERTIES PREFIX "lib") set_target_properties(rse-model PROPERTIES IMPORT_PREFIX "lib") target_link_libraries(rse-model ${GLEW_LIBRARIES}) else() target_link_libraries(rse-model ${GLEW_LIBRARIES} m) endif() # GPG signature custom command #add_custom_command( # OUTPUT "" # COMMAND gpg --batch --detach-sign # -o ${RSE_MOD_NAME}_${CI_SYS_TARGET}.gpg # ${RSE_MOD_NAME} # DEPENDS ${RSE_MOD_NAME} # VERBATIM #) # Install project executable install(TARGETS rse-model RUNTIME DESTINATION bin )