mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-02-01 00:18:44 +03:00
8 lines
207 B
CMake
8 lines
207 B
CMake
|
|
if(TARGET OpenVDB::openvdb)
|
||
|
|
add_executable(openvdb_example openvdb_example.cpp)
|
||
|
|
|
||
|
|
target_link_libraries(openvdb_example libslic3r)
|
||
|
|
target_link_libraries(openvdb_example OpenVDB::openvdb)
|
||
|
|
endif()
|
||
|
|
|