Files
GraphicsSandbox/app/CMakeLists.txt
T
2026-06-14 09:18:46 -07:00

13 lines
213 B
CMake

set(target mainApp)
add_executable(${target}
main.cpp
)
target_compile_features(${target} PRIVATE cxx_std_23)
target_link_libraries(${target}
PRIVATE
project_core
project_image_writers
)