Skip to content

Commit 05a8abf

Browse files
author
Owen Jones
committed
Fix CMake macro
Using ${CMAKE_SOURCE_DIR} doesn't work e.g. in a repository including cbmc as a subtree. Instead we use "${CBMC_SOURCE_DIR}/..".
1 parent e3b7221 commit 05a8abf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cbmc/jbmc/regression/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(test_pl_path "${CMAKE_SOURCE_DIR}/regression/test.pl")
1+
set(test_pl_path "${CBMC_SOURCE_DIR}/../regression/test.pl")
22

33
# For the best possible utilisation of multiple cores when
44
# running tests in parallel, it is important that these directories are

0 commit comments

Comments
 (0)