We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 547eaad commit 04c46fdCopy full SHA for 04c46fd
examples/CMakeLists.txt
@@ -1,6 +1,12 @@
1
find_package(CLI11 CONFIG REQUIRED)
2
3
-add_library(ExamplesCommon STATIC lib/Common.cpp lib/PerlinNoise.cpp)
+add_library(
4
+ ExamplesCommon
5
+ STATIC
6
+ lib/Common.cpp
7
+ lib/PerlinNoise.cpp
8
+ lib/GenHeightfield.cpp
9
+)
10
target_link_libraries(ExamplesCommon PUBLIC candlewick_core imgui_headers)
11
target_include_directories(
12
ExamplesCommon
@@ -9,7 +15,6 @@ target_include_directories(
15
16
if(BUILD_PINOCCHIO_VISUALIZER)
17
find_package(example-robot-data REQUIRED)
- target_sources(ExamplesCommon PRIVATE lib/GenHeightfield.cpp)
13
18
target_link_libraries(
14
19
20
PUBLIC
0 commit comments