UI core boiler plate
This commit is contained in:
@@ -6,7 +6,8 @@ set(CMAKE_C_STANDARD 11)
|
||||
if (EMSCRIPTEN)
|
||||
add_compile_options(-Wall -Wextra -Wpedantic)
|
||||
else()
|
||||
add_compile_options(-Wall -Wextra -Wpedantic -std=c11)
|
||||
#add_compile_options(-Wall -Wextra -Wpedantic -std=c11)
|
||||
add_compile_options(-Wall -Wextra)
|
||||
endif()
|
||||
|
||||
add_compile_definitions(DEBUG_MODE)
|
||||
@@ -22,12 +23,14 @@ target_link_libraries(rlImGui cimgui raylib)
|
||||
set(librarySources
|
||||
libs/cute_tiled/cute_tiled.c
|
||||
libs/raygui/raygui.c
|
||||
libs/stb/stb.c
|
||||
)
|
||||
|
||||
set(libraryDirs
|
||||
libs/cute_tiled
|
||||
libs/raygui
|
||||
libs/rlImGui
|
||||
libs/stb
|
||||
)
|
||||
|
||||
|
||||
@@ -41,6 +44,8 @@ set(BreezeSources
|
||||
breeze/map/map.c
|
||||
breeze/map/tileset.c
|
||||
|
||||
breeze/ui/ui.c
|
||||
|
||||
breeze/util/array.c
|
||||
breeze/util/heap.c
|
||||
breeze/util/object_pool.c
|
||||
@@ -59,6 +64,8 @@ set(BreezeHeaders
|
||||
breeze/map/map.h
|
||||
breeze/map/tileset.h
|
||||
|
||||
breeze/ui/ui.h
|
||||
|
||||
breeze/util/array.h
|
||||
breeze/util/heap.h
|
||||
breeze/util/object_pool.h
|
||||
|
||||
Reference in New Issue
Block a user