first commit

This commit is contained in:
2023-11-22 12:01:20 +01:00
commit abed95f542
3 changed files with 212 additions and 0 deletions

9
xmake.lua Normal file
View File

@@ -0,0 +1,9 @@
add_rules("mode.debug", "mode.release")
add_requires("libsdl", "libsdl_mixer")
add_requires("imgui", {configs = {sdl2 = true, opengl3 = true}})
target("PerfectHear")
set_kind("binary")
add_files("src/*.cpp")
add_packages("libsdl", "libsdl_mixer", "imgui")