1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
commit 909f55a9daf45f31820f81db8b90d64799f315cd
Author: François Trahay <francois.trahay@telecom-sudparis.eu>
Date: Mon Jan 10 14:00:40 2022 +0100
fix a cmakelist file
commit 03538ed0fc39b8c5778a706b70d510e0f0c99604
Author: François Trahay <francois.trahay@telecom-sudparis.eu>
Date: Mon Feb 3 11:16:35 2025 +0100
fix cmake
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt
index 1121674..4903546 100644
--- a/utils/CMakeLists.txt
+++ b/utils/CMakeLists.txt
@@ -6,7 +6,8 @@ add_executable(litl_split litl_split.c )
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}/include
- ${CMAKE_CURRENT_BINARY_DIR}/include>
+ ${CMAKE_CURRENT_BINARY_DIR}/include
+ ${CMAKE_SOURCE_DIR}/src
)
target_link_libraries( litl_print PRIVATE litl )
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt
index 4903546..25e767a 100644
--- a/utils/CMakeLists.txt
+++ b/utils/CMakeLists.txt
@@ -6,7 +6,7 @@ add_executable(litl_split litl_split.c )
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}/include
- ${CMAKE_CURRENT_BINARY_DIR}/include
+ ${CMAKE_BINARY_DIR}/src
${CMAKE_SOURCE_DIR}/src
)
|