14 lines
187 B
CMake
14 lines
187 B
CMake
project(gui CXX)
|
|
|
|
add_executable(${PROJECT_NAME}
|
|
main.cpp
|
|
memorycard.cpp
|
|
block.cpp
|
|
icon_fetch.cpp
|
|
grid.cpp
|
|
resize_harris.cpp
|
|
)
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
PUBLIC nana
|
|
)
|