forked from organicmaps/organicmaps
Cleaned up variables in conditionals.
This commit is contained in:
parent
117816a3ed
commit
bd0ebdcdad
1 changed files with 3 additions and 3 deletions
|
@ -79,7 +79,7 @@ omim_set_platform_var(PL_ANDROID "android-.*")
|
|||
omim_set_platform_var(PL_MAC "macx-.*" ${APPLE})
|
||||
omim_set_platform_var(PL_WIN "win32-.*" ${WIN32})
|
||||
|
||||
if (${UNIX} AND (NOT ${PL_MAC}))
|
||||
if (UNIX AND (NOT PL_MAC))
|
||||
set(LINUX_DETECTED TRUE)
|
||||
else()
|
||||
set(LINUX_DETECTED FALSE)
|
||||
|
@ -92,13 +92,13 @@ omim_set_platform_var(PL_LINUX "linux-.*" ${LINUX_DETECTED})
|
|||
# Functions for using in subdirectories
|
||||
|
||||
function(omim_add_test executable)
|
||||
if (NOT ${NO_TESTS})
|
||||
if (NOT NO_TESTS)
|
||||
add_executable(${executable} ${OMIM_DIR}/testing/testingmain.cpp ${ARGN})
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
function(omim_add_test_subdirectory subdir)
|
||||
if (NOT ${NO_TESTS})
|
||||
if (NOT NO_TESTS)
|
||||
add_subdirectory(${subdir})
|
||||
endif()
|
||||
endfunction()
|
||||
|
|
Loading…
Add table
Reference in a new issue