Cmake: use debug version of simgear when building in debug mode
This commit is contained in:
parent
8cab5f9e60
commit
311925ecb4
1 changed files with 29 additions and 9 deletions
|
@ -33,6 +33,8 @@
|
||||||
# People will have to manually change the cache values of
|
# People will have to manually change the cache values of
|
||||||
# SimGear_LIBRARIES to override this selection or set the CMake environment
|
# SimGear_LIBRARIES to override this selection or set the CMake environment
|
||||||
# CMAKE_INCLUDE_PATH to modify the search paths.
|
# CMAKE_INCLUDE_PATH to modify the search paths.
|
||||||
|
|
||||||
|
include(SelectLibraryConfigurations)
|
||||||
|
|
||||||
FIND_PATH(SIMGEAR_INCLUDE_DIR simgear/math/SGMath.hxx
|
FIND_PATH(SIMGEAR_INCLUDE_DIR simgear/math/SGMath.hxx
|
||||||
HINTS $ENV{SIMGEAR_DIR}
|
HINTS $ENV{SIMGEAR_DIR}
|
||||||
|
@ -63,10 +65,11 @@ FIND_LIBRARY(SIMGEAR_LIBRARIES
|
||||||
|
|
||||||
macro(find_sg_component comp libs)
|
macro(find_sg_component comp libs)
|
||||||
set(compLib "sg${comp}")
|
set(compLib "sg${comp}")
|
||||||
string(TOUPPER "SIMGEAR_${comp}_LIBRARY" compLibName)
|
string(TOUPPER "SIMGEAR_${comp}" compLibBase)
|
||||||
|
set( compLibName ${compLibBase}_LIBRARY )
|
||||||
FIND_LIBRARY(${compLibName}
|
|
||||||
NAMES ${compLib}
|
FIND_LIBRARY(${compLibName}_DEBUG
|
||||||
|
NAMES ${compLib}${CMAKE_DEBUG_POSTFIX}
|
||||||
HINTS $ENV{SIMGEAR_DIR}
|
HINTS $ENV{SIMGEAR_DIR}
|
||||||
PATH_SUFFIXES lib64 lib libs64 libs libs/Win32 libs/Win64
|
PATH_SUFFIXES lib64 lib libs64 libs libs/Win32 libs/Win64
|
||||||
PATHS
|
PATHS
|
||||||
|
@ -74,11 +77,28 @@ macro(find_sg_component comp libs)
|
||||||
/usr
|
/usr
|
||||||
/opt
|
/opt
|
||||||
)
|
)
|
||||||
|
FIND_LIBRARY(${compLibName}_RELEASE
|
||||||
set(componentLib ${${compLibName}})
|
NAMES ${compLib}${CMAKE_RELEASE_POSTFIX}
|
||||||
if (NOT ${componentLib} STREQUAL "componentLib-NOTFOUND")
|
HINTS $ENV{SIMGEAR_DIR}
|
||||||
#message(STATUS "found ${componentLib}")
|
PATH_SUFFIXES lib64 lib libs64 libs libs/Win32 libs/Win64
|
||||||
list(APPEND ${libs} ${componentLib})
|
PATHS
|
||||||
|
/usr/local
|
||||||
|
/usr
|
||||||
|
/opt
|
||||||
|
)
|
||||||
|
select_library_configurations( ${compLibBase} )
|
||||||
|
|
||||||
|
set(componentLibRelease ${${compLibName}_RELEASE})
|
||||||
|
message(STATUS "Simgear ${compLibName}_RELEASE ${componentLibRelease}")
|
||||||
|
set(componentLibDebug ${${compLibName}_DEBUG})
|
||||||
|
message(STATUS "Simgear ${compLibName}_DEBUG ${componentLibDebug}")
|
||||||
|
if (NOT ${compLibName}_DEBUG)
|
||||||
|
if (NOT ${compLibName}_RELEASE)
|
||||||
|
#message(STATUS "found ${componentLib}")
|
||||||
|
list(APPEND ${libs} ${componentLibRelease})
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
list(APPEND ${libs} optimized ${componentLibRelease} debug ${componentLibDebug})
|
||||||
endif()
|
endif()
|
||||||
endmacro()
|
endmacro()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue