diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-11-20 16:35:29 +0100 |
---|---|---|
committer | gregory guy <gregory-tde@laposte.net> | 2020-12-01 12:20:45 +0100 |
commit | 0683f09c4a902a13b826a06ef95377b6352801f8 (patch) | |
tree | 843997106bcc4506b6294bda5754d2aaf9303da8 /q15/CMakeLists.txt | |
parent | b4978e97409c609686dc6eb97b150ed2e677ff13 (diff) | |
download | tdegames-0683f09c4a902a13b826a06ef95377b6352801f8.tar.gz tdegames-0683f09c4a902a13b826a06ef95377b6352801f8.zip |
Some cleanup and cosmetics.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'q15/CMakeLists.txt')
-rw-r--r-- | q15/CMakeLists.txt | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/q15/CMakeLists.txt b/q15/CMakeLists.txt index 364a3c77..0b719487 100644 --- a/q15/CMakeLists.txt +++ b/q15/CMakeLists.txt @@ -1,60 +1,2 @@ -################################################# -# -# (C) 2010-2011 Serghei Amelian -# serghei (DOT) amelian (AT) gmail.com -# -# Improvements and feedback are welcome -# -# This file is released under GPL >= 2 -# -################################################# - -project( q15 ) - -set( TQT_MAJOR_VERSION 14 ) -set( TQT_MINOR_VERSION 0 ) -set( TQT_MICRO_VERSION 0 ) -set( TQT_VERSION "${TQT_MAJOR_VERSION}.${TQT_MINOR_VERSION}.${TQT_MICRO_VERSION}" ) - - -##### cmake setup ############################### - -cmake_minimum_required( VERSION 2.8 ) - -include( CheckCXXSourceCompiles ) -include( GNUInstallDirs OPTIONAL ) - - -##### include our cmake modules ################# - -set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" ) -include( TDEMacros ) -include( FindPkgConfig ) - - -##### install paths setup ####################### - -tde_setup_install_path( EXEC_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}" ) -tde_setup_install_path( BIN_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/bin" ) - - -##### optional stuff ############################ - -option( WITH_ALL_OPTIONS "Enable all optional support" OFF ) - - -##### user requested modules #################### - -option( BUILD_ALL "Build all" OFF ) - - -##### configure checks ########################## - -include( ConfigureChecks.cmake ) - - -set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" ) - -##### q15 sources ###################### add_subdirectory( src ) |