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 9cc33ee commit 46fe152Copy full SHA for 46fe152
CMakeLists.txt
@@ -13,6 +13,8 @@ add_subdirectory(chr-core)
13
add_subdirectory(chr-mem)
14
add_subdirectory(chr-math)
15
16
-target_link_libraries(chr PUBLIC chr-core)
17
target_link_libraries(chr-mem PRIVATE chr-core)
18
-target_link_libraries(chr-math PRIVATE chr-core)
+target_link_libraries(chr-math PRIVATE chr-core)
+
19
+target_link_libraries(chr PUBLIC chr-core)
20
+target_link_libraries(chr PUBLIC chr-math)
src/chr
@@ -1,3 +1,4 @@
1
#pragma once
2
3
-#include <chr-core>
+#include <chr-core>
4
+#include <chr-math>
0 commit comments