diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-10 01:46:23 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-10 01:46:23 -0500 |
commit | dfb75324af3dfdb983f354782c6025f37e665ee5 (patch) | |
tree | 776c8911b5ac2dbd6bd1ee2f9692ace3f4199e51 /CMakeLists.txt | |
parent | 1e959a2aeca4499a1b8a79d1793953348638b69f (diff) | |
download | tdebase-dfb75324af3dfdb983f354782c6025f37e665ee5.tar.gz tdebase-dfb75324af3dfdb983f354782c6025f37e665ee5.zip |
Fix Keramic data file installation and add long long check to CMake
This closes Bug 905
Thanks to Roman Savochenko and Leandro Nini for the patches!
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b87e76ee7..31fb46c43 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,6 +27,7 @@ include( CheckCXXSourceCompiles ) include( CheckLibraryExists ) include( CheckFunctionExists ) include( CheckStructHasMember ) +include( CheckTypeSize ) ##### include our cmake modules ################# @@ -157,6 +158,8 @@ set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" ) set( CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined" ) set( CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined" ) +check_type_size( "long long" LONG_LONG ) + ##### tdebase directories ####################### |