4 lines
138 B
CMake
4 lines
138 B
CMake
add_executable(sim main.cpp)
|
|
target_compile_features(sim PRIVATE cxx_std_17)
|
|
target_link_libraries(sim PRIVATE inc duckdb OpenCL::OpenCL)
|