Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
shaderboy/CMakeLists.txt
2024-01-03 15:56:52 -05:00

15 lines
No EOL
342 B
CMake

project(shaderboy)
set(CMAKE_CXX_STANDARD 14)
add_definitions(-DGLFW_INCLUDE_NONE) #stop glfw from including the damn gl header
set(SOURCE_FILES
glad.c
main.cpp
imgui.cpp
imgui_draw.cpp
imgui_impl_glfw_gl3.cpp)
add_executable(shaderboy ${SOURCE_FILES})
target_link_libraries(shaderboy glfw dl curl)