2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-16 04:45:52 +00:00
metaforce/imgui/CMakeLists.txt

19 lines
690 B
CMake
Raw Normal View History

2021-05-24 17:25:31 -04:00
add_library(imgui
../extern/imgui/imgui.cpp
../extern/imgui/imgui_demo.cpp
../extern/imgui/imgui_draw.cpp
../extern/imgui/imgui_tables.cpp
../extern/imgui/imgui_widgets.cpp
ImGuiEngine.cpp
ImGuiEngine.hpp
NotoMono.cpp
2021-05-24 17:25:31 -04:00
)
2021-05-25 12:24:05 -04:00
target_include_directories(imgui PUBLIC ${CMAKE_SOURCE_DIR}/extern/imgui ${CMAKE_CURRENT_SOURCE_DIR})
2021-05-24 17:25:31 -04:00
target_compile_definitions(imgui PUBLIC IMGUI_USER_CONFIG="imconfig_user.h")
target_link_libraries(imgui PRIVATE boo hecl-light RetroDataSpec)
bintoc_compress(NotoMono.cpp NotoMono-Regular.ttf NOTO_MONO_FONT)
add_shader(ImGuiShader)
target_link_libraries(shader_ImGuiShader PRIVATE hecl-light)