File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ project(ipfixprobe VERSION ${VERSION} LANGUAGES CXX C)
99
1010include (cmake/build_type .cmake)
1111include (cmake/installation.cmake)
12- include (cmake/dependencies.cmake)
1312
1413set (CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR} /cmake/modules)
1514
@@ -32,4 +31,7 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wpedantic -Wall -Wextra -Wunused -Wconv
3231set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -Werror" )
3332set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g -ggdb3" )
3433
34+ include (cmake/dependencies.cmake)
35+
36+ add_subdirectory (external)
3537add_subdirectory (src)
Original file line number Diff line number Diff line change 1+ include (FetchContent)
2+ include (ExternalProject)
3+
4+ set (FETCHCONTENT_QUIET OFF )
You can’t perform that action at this time.
0 commit comments