From 34493a02b1cd2e7ec2e96192ce88ee00367dd366 Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 17 Dec 2022 21:41:22 +0100 Subject: Event log is now using ImGui I don't like the fact that I put entire rlImGui and imgui into the project but that's how they usually deal with the distribution and packaging... --- contrib/imgui/CMakeLists.txt | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 contrib/imgui/CMakeLists.txt (limited to 'contrib/imgui/CMakeLists.txt') diff --git a/contrib/imgui/CMakeLists.txt b/contrib/imgui/CMakeLists.txt new file mode 100644 index 0000000..b87bfa3 --- /dev/null +++ b/contrib/imgui/CMakeLists.txt @@ -0,0 +1,22 @@ +project(imgui) +add_library( + ${PROJECT_NAME} + imgui.cpp + imgui_demo.cpp + imgui_draw.cpp + imgui_tables.cpp + imgui_widgets.cpp + rlImGui.cpp +) +target_compile_definitions( + ${PROJECT_NAME} + PUBLIC NO_FONT_AWESOME +) +target_link_libraries( + ${PROJECT_NAME} + PUBLIC raylib +) +target_include_directories( + ${PROJECT_NAME} + PUBLIC . +) -- cgit v1.1