8 lines
102 B
CMake
8 lines
102 B
CMake
|
project(sandbox)
|
||
|
|
||
|
add_executable(sandbox
|
||
|
src/Application.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(sandbox quark)
|