This commit is contained in:
andrewchilicki
2025-02-08 15:12:24 -05:00
parent 902993bde1
commit 71bd81f2b9
60 changed files with 99637 additions and 12 deletions

15
libs/Image/CMakeLists.txt Normal file
View File

@ -0,0 +1,15 @@
add_library(Image
Image.h
ImageDisplay.cpp ImageDisplay.h
)
target_include_directories(Image PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/external/stb
)
target_link_libraries(Image PUBLIC
ImGui
OpenGL::GL
glfw
)