Add CMakeLists.txt and imgui.
This commit is contained in:
19
CMakeLists.txt
Normal file
19
CMakeLists.txt
Normal 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)
|
||||
Reference in New Issue
Block a user