Files
opengl-learn/coordinate-systems/CMakeLists.txt
2025-12-18 09:26:50 +08:00

18 lines
237 B
CMake

cmake_minimum_required(VERSION 3.5)
project(coordinate-system-project)
add_executable(
${PROJECT_NAME}
main.cc
glad.c
camera.hh
mesh.hh
)
target_link_libraries(
${PROJECT_NAME}
PRIVATE
libglfw3.a
)