Skip to content

Commit 544215b

Browse files
committed
fmt
1 parent 189a1c0 commit 544215b

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

modules/core/CMakeLists.txt

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,20 @@ add_library(${exec_func_lib} STATIC ${LIB_SOURCE_FILES})
2525
set_target_properties(${exec_func_lib} PROPERTIES LINKER_LANGUAGE CXX)
2626

2727
# Add include directories to target
28-
target_include_directories(${exec_func_lib} PUBLIC
29-
${CMAKE_SOURCE_DIR}/3rdparty
30-
${CMAKE_SOURCE_DIR}/modules
31-
${CMAKE_SOURCE_DIR}/tasks
32-
)
28+
target_include_directories(
29+
${exec_func_lib} PUBLIC ${CMAKE_SOURCE_DIR}/3rdparty
30+
${CMAKE_SOURCE_DIR}/modules ${CMAKE_SOURCE_DIR}/tasks)
3331

3432
# Add external project include directories
35-
target_include_directories(${exec_func_lib} PUBLIC
36-
${CMAKE_SOURCE_DIR}/3rdparty/onetbb/include
37-
${CMAKE_SOURCE_DIR}/3rdparty/json/include
38-
${CMAKE_SOURCE_DIR}/3rdparty/googletest/googletest/include
39-
${CMAKE_SOURCE_DIR}/3rdparty/libenvpp/include
40-
)
41-
target_include_directories(${exec_func_lib} SYSTEM PUBLIC
42-
${CMAKE_SOURCE_DIR}/3rdparty/libenvpp/external/fmt/include
43-
)
33+
target_include_directories(
34+
${exec_func_lib}
35+
PUBLIC ${CMAKE_SOURCE_DIR}/3rdparty/onetbb/include
36+
${CMAKE_SOURCE_DIR}/3rdparty/json/include
37+
${CMAKE_SOURCE_DIR}/3rdparty/googletest/googletest/include
38+
${CMAKE_SOURCE_DIR}/3rdparty/libenvpp/include)
39+
target_include_directories(
40+
${exec_func_lib} SYSTEM
41+
PUBLIC ${CMAKE_SOURCE_DIR}/3rdparty/libenvpp/external/fmt/include)
4442

4543
add_dependencies(${exec_func_lib} ppc_libenvpp)
4644
target_link_directories(${exec_func_lib} PUBLIC

0 commit comments

Comments
 (0)