Browse Source

Move tools subdirectory AFTER the flags it uses are defined

Michael Hansen 9 years ago
parent
commit
5116fa9e21
  1. 10
      CMakeLists.txt

10
CMakeLists.txt

@ -221,11 +221,6 @@ option(PLASMA_BUILD_LAUNCHER "Do we want to build plUruLauncher?" ON)
option(PLASMA_BUILD_TOOLS "Do we want to build the Plasma tools?" ON)
option(PLASMA_BUILD_TESTS "Do we want to build the unit tests?" OFF)
if(PLASMA_BUILD_TOOLS)
# Custom dummy target for compiling all tools
add_custom_target(tools)
endif()
if(WIN32)
find_package(MaxSDK)
set_package_properties(MaxSDK PROPERTIES
@ -259,6 +254,11 @@ if(WIN32)
endif(USE_VLD)
endif()
if(PLASMA_BUILD_TOOLS)
# Custom dummy target for compiling all tools
add_custom_target(tools)
endif()
include(TestBigEndian)
test_big_endian(BIG_ENDIAN)
if(BIG_ENDIAN)

Loading…
Cancel
Save