diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-11-20 16:35:29 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-12-02 19:51:30 +0100 |
commit | 5bf9a46ed843025016c7b7be43a1ca8754d60b79 (patch) | |
tree | 45b7243b7a03a2425da3c0117b858bbd31264a29 /CMakeLists.txt | |
parent | afd39a42465117e8926ad7a858dc65c9bf654fa0 (diff) | |
download | tdegames-5bf9a46ed843025016c7b7be43a1ca8754d60b79.tar.gz tdegames-5bf9a46ed843025016c7b7be43a1ca8754d60b79.zip |
Some cleanup and cosmetics.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
(cherry picked from commit 0683f09c4a902a13b826a06ef95377b6352801f8)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 89 |
1 files changed, 47 insertions, 42 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fd0c19c5..3631385f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,24 +1,25 @@ -################################################# -# -# (C) 2016 Alexander Golubev -# fatzer2 (AT) gmail.com -# -# Improvements and feedback are welcome -# -# This file is released under GPL >= 2 -# -################################################# +########################################### +# # +# (C) 2016 Alexander Golubev # +# fatzer2 (AT) gmail.com # +# # +# Improvements and feedback are welcome # +# # +# This file is released under GPL >= 2 # +# # +########################################### + cmake_minimum_required( VERSION 2.8 ) -##### general package setup ##################### +##### general package setup project( tdegames ) set( VERSION R14.0.10 ) -##### include essential cmake modules ########### +##### include essential cmake modules include( FindPkgConfig ) include( CheckIncludeFile ) @@ -27,34 +28,36 @@ include( CheckSymbolExists ) include( CheckCXXSourceCompiles ) -##### include our cmake modules ################# +##### include our cmake modules set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" ) include( TDEMacros ) -##### setup install paths ####################### +##### setup install paths include( TDESetupPaths ) tde_setup_paths( ) -##### optional stuff ############################ +##### optional stuff option( WITH_ALL_OPTIONS "Enable all optional support" OFF ) -option( WITH_ARTS "Enable aRts support" ${WITH_ALL_OPTIONS} ) - - -##### options comments ########################## +option( WITH_ARTS "Enable aRts support" ${WITH_ALL_OPTIONS} ) -# WITH_ARTS affects kbounce -# if disabled the game will have no sound -# NOTE: ARTS is unconditionally required to build kolf and kasteroids +######################## options comments ############################# +# # +# WITH_ARTS affects kbounce if disabled the game will have no sound # +# # +# ARTS is required to build kolf and kasteroids # +# # +####################################################################### -##### user requested modules #################### -option( BUILD_ALL "Build all" OFF ) +##### user requested modules +option( BUILD_ALL "Build all" OFF ) +option( BUILD_LIBTDEGAMES "Build libtdegames" ${BUILD_ALL} ) option( BUILD_ATLANTIK "Build atlantik" ${BUILD_ALL} ) option( BUILD_DOC "Build documentation" ${BUILD_ALL} ) option( BUILD_KASTEROIDS "Build kasteroids" ${BUILD_ALL} ) @@ -86,21 +89,19 @@ option( BUILD_KSOKOBAN "Build ksokoban" ${BUILD_ALL} ) option( BUILD_KSPACEDUEL "Build kspaceduel" ${BUILD_ALL} ) option( BUILD_KTRON "Build ktron" ${BUILD_ALL} ) option( BUILD_KTUBERLING "Build ktuberling" ${BUILD_ALL} ) -option( BUILD_LIBTDEGAMES "Build libtdegames" ${BUILD_ALL} ) option( BUILD_LSKAT "Build lskat" ${BUILD_ALL} ) option( BUILD_TWIN4 "Build twin4" ${BUILD_ALL} ) +option( BUILD_Q15 "Build q15" ${BUILD_ALL} ) -##### configure checks ########################## +##### configure checks include( ConfigureChecks.cmake ) -###### global compiler settings ################# +###### global compiler settings -add_definitions( - -DHAVE_CONFIG_H -) +add_definitions( -DHAVE_CONFIG_H ) set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" ) set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" ) @@ -110,19 +111,23 @@ if( WITH_TEST ) enable_testing() endif( WITH_TEST ) -##### add apidox targets ############ -add_custom_target(apidox - COMMAND "./generate_apidox" "${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}" "${HTML_INSTALL_DIR}" "/usr/share/tqt3/doc/html" - WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/cmake/") +##### add apidox targets -add_custom_target(install-apidox - COMMAND "./install_apidox" "${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}" "${HTML_INSTALL_DIR}" "${CMAKE_INSTALL_PREFIX}" - WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/cmake/") +add_custom_target( apidox + COMMAND "./generate_apidox" "${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}" "${HTML_INSTALL_DIR}" "/usr/share/tqt3/doc/html" + WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/cmake/" +) + +add_custom_target( install-apidox + COMMAND "./install_apidox" "${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}" "${HTML_INSTALL_DIR}" "${CMAKE_INSTALL_PREFIX}" + WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/cmake/" +) -##### tdegames directories ##################### +##### tdegames directories +tde_conditional_add_subdirectory( BUILD_LIBTDEGAMES libtdegames ) tde_conditional_add_subdirectory( BUILD_ATLANTIK atlantik ) tde_conditional_add_subdirectory( BUILD_DOC doc ) tde_conditional_add_subdirectory( BUILD_KASTEROIDS kasteroids ) @@ -154,15 +159,15 @@ tde_conditional_add_subdirectory( BUILD_KSOKOBAN ksokoban ) tde_conditional_add_subdirectory( BUILD_KSPACEDUEL kspaceduel ) tde_conditional_add_subdirectory( BUILD_KTRON ktron ) tde_conditional_add_subdirectory( BUILD_KTUBERLING ktuberling ) -tde_conditional_add_subdirectory( BUILD_LIBTDEGAMES libtdegames ) tde_conditional_add_subdirectory( BUILD_LSKAT lskat ) tde_conditional_add_subdirectory( BUILD_TWIN4 twin4 ) +tde_conditional_add_subdirectory( BUILD_Q15 q15 ) if( BUILD_KSIRTET OR BUILD_KFOULEGGS OR BUILD_KLICKETY ) - add_subdirectory( libksirtet ) -endif( ) + add_subdirectory( libksirtet ) +endif() -##### write configure files ##################### +##### write configure files configure_file( config.h.cmake config.h @ONLY ) |