mirror of
https://github.com/rmontanana/mdlp.git
synced 2025-08-16 07:55:58 +00:00
13 lines
293 B
CMake
13 lines
293 B
CMake
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
set(CMAKE_BUILD_TYPE Debug)
|
|
|
|
include_directories(
|
|
${fimdlp_SOURCE_DIR}/src
|
|
${fimdlp_SOURCE_DIR}/tests/lib/Files
|
|
${CMAKE_BINARY_DIR}/configured_files/include
|
|
)
|
|
|
|
add_executable(sample sample.cpp )
|
|
target_link_libraries(sample fimdlp "${TORCH_LIBRARIES}")
|