Skip to content

Commit f5f452b

Browse files
Jordan Schidlowskydavidchisnall
Jordan Schidlowsky
authored andcommitted
cmake fails when project is used in other cmake projects. CMAKE_CURRENT_LIST_DIR should be a more portable path
1 parent dde74a8 commit f5f452b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ function(test_cxx CXX_RUNTIME_NAME IS_STDLIB)
205205
message(STATUS "Testing ${CXX_RUNTIME_LIB} as the C++ runtime library")
206206
try_compile(USERUNTIME
207207
"${CMAKE_BINARY_DIR}/CMake"
208-
"${CMAKE_SOURCE_DIR}/CMake"
208+
"${CMAKE_CURRENT_LIST_DIR}/CMake"
209209
test_cxx_runtime
210210
CMAKE_FLAGS "-DCXX_RUNTIME=${CXX_RUNTIME_LIB}")
211211
if (USERUNTIME)
@@ -276,7 +276,7 @@ if (ENABLE_OBJCXX)
276276
message(STATUS "Testing C++ standard library")
277277
try_compile(USERUNTIME
278278
"${CMAKE_BINARY_DIR}/CMake"
279-
"${CMAKE_SOURCE_DIR}/CMake"
279+
"${CMAKE_CURRENT_LIST_DIR}/CMake"
280280
test_cxx_runtime)
281281
if (${USERUNTIME})
282282
message(STATUS "libobjc will depend on C++ standard library")

0 commit comments

Comments
 (0)