We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3873fe6 commit e850d7dCopy full SHA for e850d7d
oak/CMakeLists.txt
@@ -13,10 +13,15 @@ find_package(cloe-runtime REQUIRED)
13
find_package(cppnetlib REQUIRED)
14
find_package(Boost COMPONENTS headers REQUIRED)
15
16
+file(GLOB ${target}_PUBLIC_HEADERS "include/**/*.hpp")
17
add_library(${target}
18
# find src -type f -name "*.cpp" \! -name "*_test.cpp"
19
src/oak/registrar.cpp
20
src/oak/server.cpp
21
+
22
+ # For IDE integration
23
+ ${${target}_PUBLIC_HEADERS}
24
+ src/oak/request_stub.hpp
25
)
26
add_library(${alias} ALIAS ${target})
27
set_target_linting(${target})
0 commit comments