mirror of
https://github.com/rmontanana/mdlp.git
synced 2025-08-15 23:45:57 +00:00
12 lines
244 B
CMake
12 lines
244 B
CMake
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
set(CMAKE_BUILD_TYPE Debug)
|
|
|
|
include_directories(
|
|
${fimdlp_SOURCE_DIR}/src
|
|
${fimdlp_SOURCE_DIR}/tests/lib/Files
|
|
)
|
|
|
|
add_executable(sample sample.cpp )
|
|
target_link_libraries(sample fimdlp "${TORCH_LIBRARIES}")
|