Skip to content

Commit 46fe152

Browse files
committed
included chr-math into std chr lib
1 parent 9cc33ee commit 46fe152

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CMakeLists.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ add_subdirectory(chr-core)
1313
add_subdirectory(chr-mem)
1414
add_subdirectory(chr-math)
1515

16-
target_link_libraries(chr PUBLIC chr-core)
1716
target_link_libraries(chr-mem PRIVATE chr-core)
18-
target_link_libraries(chr-math PRIVATE chr-core)
17+
target_link_libraries(chr-math PRIVATE chr-core)
18+
19+
target_link_libraries(chr PUBLIC chr-core)
20+
target_link_libraries(chr PUBLIC chr-math)

src/chr

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#pragma once
22

3-
#include <chr-core>
3+
#include <chr-core>
4+
#include <chr-math>

0 commit comments

Comments
 (0)