Begin Network build
This commit is contained in:
16
CMakeLists.txt
Normal file
16
CMakeLists.txt
Normal file
@@ -0,0 +1,16 @@
|
||||
cmake_minimum_required(VERSION 3.20)
|
||||
|
||||
project(bayesnet)
|
||||
find_package(Torch REQUIRED)
|
||||
|
||||
if (POLICY CMP0135)
|
||||
cmake_policy(SET CMP0135 NEW)
|
||||
endif ()
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TORCH_CXX_FLAGS}")
|
||||
|
||||
# add_library(BayesNet Node.cc Network.cc)
|
||||
# add_executable(BayesNet main.cc Node.cc Network.cc ArffFiles.cc)
|
||||
add_executable(BayesNet main.cc ArffFiles.cc Node.cc Network.cc)
|
||||
target_link_libraries(BayesNet "${TORCH_LIBRARIES}")
|
Reference in New Issue
Block a user