Skip to content

Commit a322d6d

Browse files
committed
fixed cmakelist.txt
1 parent ad5478a commit a322d6d

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Main src/CMakeLists.txt
22

33
add_subdirectory(activations)
4-
# add_subdirectory(core)
4+
add_subdirectory(core)
55
add_subdirectory(layers)
66
add_subdirectory(utils)
77

src/core/CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
add_library(core STATIC
2+
NeuralNetwork.cpp
3+
)
4+
5+
# Include the directory for headers
6+
target_include_directories(core PUBLIC
7+
${PROJECT_SOURCE_DIR}/include
8+
)

0 commit comments

Comments
 (0)