mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2026-01-23 22:29:22 -05:00
Initial Commit
Basic window with OpenGL, glad, GLFW, ImGui, and Eigen. Dependencies are populated with FetchContent, not submodules.
This commit is contained in:
14
CMakeLists.txt
Normal file
14
CMakeLists.txt
Normal file
@@ -0,0 +1,14 @@
|
||||
cmake_minimum_required(VERSION 3.21)
|
||||
project(toddcox-visualize)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
include(FetchContent)
|
||||
|
||||
include(External/glfw.cmake)
|
||||
include(External/imgui.cmake)
|
||||
include(External/eigen.cmake)
|
||||
include(External/glad.cmake)
|
||||
|
||||
add_executable(vis main.cpp)
|
||||
target_link_libraries(vis glfw glad imgui eigen)
|
||||
Reference in New Issue
Block a user