14 lines
342 B
CMake
14 lines
342 B
CMake
cmake_minimum_required(VERSION 3.22)
|
|
|
|
project(gfx-tests)
|
|
|
|
add_executable(gfx-tests ${CMAKE_CURRENT_SOURCE_DIR}/source/main.cpp)
|
|
target_link_libraries(gfx-tests PRIVATE palladium::palladium pd-system stb)
|
|
|
|
if(NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Nintendo3DS")
|
|
target_link_libraries(gfx-tests PRIVATE glfw)
|
|
endif()
|
|
|
|
install(
|
|
TARGETS gfx-tests
|
|
) |