update cmake to work with linux, plus some cleanup

This commit is contained in:
veclav talica 2024-08-27 13:05:10 +03:00
parent cee8d5f50f
commit 1bb33d3f34

View File

@ -2,18 +2,22 @@ cmake_minimum_required(VERSION 3.21)
project(townengine LANGUAGES C) project(townengine LANGUAGES C)
# dependencies # SDL dependencies
find_package(SDL2 REQUIRED GLOBAL) find_package(SDL2 REQUIRED GLOBAL)
find_package(SDL2_image REQUIRED GLOBAL) find_package(SDL2_image REQUIRED GLOBAL)
find_package(SDL2_ttf REQUIRED GLOBAL) find_package(SDL2_ttf REQUIRED GLOBAL)
# CMake actually has no default configuration and it's toolchain file dependent, set debug if not specified
if(NOT CMAKE_BUILD_TYPE) if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Debug) set(CMAKE_BUILD_TYPE Debug)
endif() endif()
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(TWN_TARGET townengine CACHE INTERNAL "") set(TWN_TARGET townengine CACHE INTERNAL "")
set(TWN_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR} CACHE INTERNAL "") set(TWN_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR} CACHE INTERNAL "")
# feature configuration, set them with -DFEATURE=ON/OFF in cli
option(TWN_FEATURE_DYNLIB_GAME "Enable dynamic library loading support" ON) option(TWN_FEATURE_DYNLIB_GAME "Enable dynamic library loading support" ON)
option(TWN_ARCHIVE_DATA "Enable archival of assets" OFF) option(TWN_ARCHIVE_DATA "Enable archival of assets" OFF)
@ -31,8 +35,8 @@ set(PHYSFS_ARCHIVE_QPAK OFF)
set(PHYSFS_ARCHIVE_SLB OFF) set(PHYSFS_ARCHIVE_SLB OFF)
set(PHYSFS_ARCHIVE_ISO9660 OFF) set(PHYSFS_ARCHIVE_ISO9660 OFF)
set(PHYSFS_ARCHIVE_VDF OFF) set(PHYSFS_ARCHIVE_VDF OFF)
add_subdirectory(third-party/physfs) add_subdirectory(third-party/physfs SYSTEM)
add_subdirectory(third-party/libxm) add_subdirectory(third-party/libxm SYSTEM)
if(UNIX) if(UNIX)
@ -78,11 +82,12 @@ set_target_properties(${TWN_TARGET} PROPERTIES
C_STANDARD_REQUIRED ON C_STANDARD_REQUIRED ON
C_EXTENSIONS ON) # extensions are required by stb_ds.h C_EXTENSIONS ON) # extensions are required by stb_ds.h
# precompile commonly used not-so-small headers
target_precompile_headers(${TWN_TARGET} PRIVATE target_precompile_headers(${TWN_TARGET} PRIVATE
third-party/glad/include/glad/glad.h third-party/glad/include/glad/glad.h
third-party/stb/stb_ds.h) third-party/stb/stb_ds.h)
# distribution definitions # distribution definitions, set them with -DX=X in cli
set(ORGANIZATION_NAME "wanp" CACHE STRING set(ORGANIZATION_NAME "wanp" CACHE STRING
"App developer/publisher's identifier") "App developer/publisher's identifier")
set(APP_NAME "townengine" CACHE STRING set(APP_NAME "townengine" CACHE STRING
@ -90,17 +95,8 @@ set(APP_NAME "townengine" CACHE STRING
set(PACKAGE_EXTENSION "btw" CACHE STRING set(PACKAGE_EXTENSION "btw" CACHE STRING
"File extension used to look for data archives") "File extension used to look for data archives")
function(give_options target) function(give_options target)
if(MSVC)
# close enough i say
target_compile_options(${target} PRIVATE
/W4
$<$<CONFIG:Release>:/GL>)
target_link_options(${target} PRIVATE
$<$<CONFIG:Release>:/LTCG>)
else()
set(WARNING_FLAGS_CLANG set(WARNING_FLAGS_CLANG
-Weverything -Weverything
-Wno-padded -Wno-padded
@ -158,8 +154,6 @@ function(give_options target)
$<$<CONFIG:Release>:${BUILD_FLAGS_RELEASE}> $<$<CONFIG:Release>:${BUILD_FLAGS_RELEASE}>
$<$<CONFIG:Debug>:${BUILD_FLAGS_DEBUG}>) $<$<CONFIG:Debug>:${BUILD_FLAGS_DEBUG}>)
endif()
target_compile_definitions(${target} PRIVATE target_compile_definitions(${target} PRIVATE
ORGANIZATION_NAME="${ORGANIZATION_NAME}" ORGANIZATION_NAME="${ORGANIZATION_NAME}"
APP_NAME="${APP_NAME}" APP_NAME="${APP_NAME}"
@ -217,6 +211,7 @@ function(use_townengine target sources output_directory data_dir)
set_target_properties(${TWN_TARGET} PROPERTIES set_target_properties(${TWN_TARGET} PROPERTIES
LIBRARY_OUTPUT_DIRECTORY ${output_directory}) LIBRARY_OUTPUT_DIRECTORY ${output_directory})
else() else()
# build and link all statically
add_executable(${target}_app ${sources}) add_executable(${target}_app ${sources})
endif() endif()
@ -237,12 +232,15 @@ function(use_townengine target sources output_directory data_dir)
set_target_properties(${target}_app PROPERTIES set_target_properties(${target}_app PROPERTIES
RUNTIME_OUTPUT_DIRECTORY ${output_directory}) RUNTIME_OUTPUT_DIRECTORY ${output_directory})
if(WIN32)
# copy dlls for baby windows # copy dlls for baby windows
add_custom_command(TARGET ${target}_app POST_BUILD add_custom_command(TARGET ${target}_app POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_RUNTIME_DLLS:${target}_app> COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_RUNTIME_DLLS:${target}_app>
$<TARGET_FILE_DIR:${target}_app> $<TARGET_FILE_DIR:${target}_app>
COMMAND_EXPAND_LISTS) COMMAND_EXPAND_LISTS)
endif()
# bootstrapping scripts are used to setup the expected state for an application
set(TWN_BOOTSTRAP_EXEC_ARGS set(TWN_BOOTSTRAP_EXEC_ARGS
"$<IF:$<BOOL:${TWN_ARCHIVE_DATA}>,--data-dir ./data.${PACKAGE_EXTENSION},--data-dir ${data_dir}>") "$<IF:$<BOOL:${TWN_ARCHIVE_DATA}>,--data-dir ./data.${PACKAGE_EXTENSION},--data-dir ${data_dir}>")
@ -269,7 +267,7 @@ function(use_townengine target sources output_directory data_dir)
if (TWN_ARCHIVE_DATA) if (TWN_ARCHIVE_DATA)
# zip up assets # zip up assets
add_custom_command(TARGET ${target}_app POST_BUILD add_custom_target(archive-data ALL
COMMAND cd ${data_dir} && ${CMAKE_COMMAND} -E tar "cf" ${output_directory}/data.${PACKAGE_EXTENSION} --format=zip ./ COMMAND cd ${data_dir} && ${CMAKE_COMMAND} -E tar "cf" ${output_directory}/data.${PACKAGE_EXTENSION} --format=zip ./
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
endif() endif()
@ -284,8 +282,7 @@ if (${CMAKE_PROJECT_NAME} MATCHES townengine)
add_subdirectory(apps/testgame) add_subdirectory(apps/testgame)
endif() endif()
# move compie_commands.json into root directory so that it plays nicer with editors # move compie_commands.json into root directory so that it plays nicer with code editors without any configuration
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) add_custom_target(copy-compile-commands ALL
add_custom_command(TARGET ${TWN_TARGET} POST_BUILD ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_BINARY_DIR}/compile_commands.json
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_BINARY_DIR}/compile_commands.json
${TWN_ROOT_DIR}) ${TWN_ROOT_DIR})