- Track textures (not sure if this is done tbh) - Add lithium formatters and move TextureID, TextureFormat and TextureFilter to lithium - Only include gl-helper if any glDriver is included - Add Li::Rect for UV stuff - Add Li::Texture as Info holder (still thinking of making them to ptrs - Add Check if textures are still loaded on exit
11 lines
312 B
CMake
11 lines
312 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()
|