Set up cmake to compile library

This commit is contained in:
2024-02-17 23:07:09 +01:00
parent ac18768297
commit f541e2f7f8
7 changed files with 40 additions and 93 deletions

6
src/CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
set(LAYER_SOURCES layers/dense.cpp)
add_library(CUDANet
utils/cuda_helper.cpp
${LAYER_SOURCES}
)