8 lines
183 B
CMake
8 lines
183 B
CMake
add_executable(Shattered)
|
|
target_include_directories(Shattered PRIVATE ./)
|
|
|
|
target_link_libraries(Shattered PRIVATE hoops_samples )
|
|
|
|
target_sources(Shattered
|
|
PRIVATE
|
|
Shattered.cpp) |