Преглед на файлове

Use CMAKE_CURRENT_BINARY_DIR instead of CMAKE_BINARY_DIR

This allows for building with cmake's add_subdirectory() function.
h5p9sl преди 4 години
родител
ревизия
e52733af8d
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      CMakeLists.txt

+ 1 - 1
CMakeLists.txt

@@ -1,4 +1,4 @@
-if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
+if(${CMAKE_CURRENT_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_BINARY_DIR})
   message(FATAL_ERROR "Prevented in-tree built. Please create a build directory outside of the SDL source code and call cmake from there")
   message(FATAL_ERROR "Prevented in-tree built. Please create a build directory outside of the SDL source code and call cmake from there")
 endif()
 endif()