Add CMakeLists.txt and imgui.

This commit is contained in:
2023-10-04 19:39:41 -07:00
parent cab6cf1323
commit df72e7068f
16 changed files with 51496 additions and 0 deletions

19
CMakeLists.txt Normal file
View File

@@ -0,0 +1,19 @@
cmake_minimum_required(VERSION 3.25)
project(kge)
set(CMAKE_CXX_STANDARD 14)
add_library(imgui
imgui/imgui.cpp
imgui/imgui.h
imgui/imconfig.h
imgui/imgui_draw.cpp
imgui/imgui_internal.h
imgui/imgui_tables.cpp
imgui/imgui_widgets.cpp
imgui/imstb_rectpack.h
imgui/imstb_textedit.h
imgui/imstb_truetype.h
)
add_executable(kge kge.cc Cursor.h Buffer.h Platform.cc Platform.h)