Import tmxlite.
This commit is contained in:
parent
92ed732927
commit
b3e7f3ac1c
4 changed files with 7 additions and 0 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -13,3 +13,6 @@
|
|||
[submodule "lib/better-enums"]
|
||||
path = lib/better-enums
|
||||
url = https://github.com/aantron/better-enums
|
||||
[submodule "lib/tmxlite"]
|
||||
path = lib/tmxlite
|
||||
url = https://github.com/fallahn/tmxlite.git
|
||||
|
|
|
@ -66,6 +66,7 @@ target_include_directories(${PROJECT_NAME}
|
|||
)
|
||||
|
||||
add_subdirectory(lib/clooneljump/src/cloonelgraphics)
|
||||
add_subdirectory(lib/tmxlite/tmxlite)
|
||||
add_subdirectory(src/gamelib)
|
||||
add_subdirectory(src/standalone)
|
||||
|
||||
|
|
1
lib/tmxlite
Submodule
1
lib/tmxlite
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 3934199e22d68a3a1e7c72049b5f6e85559e99dc
|
|
@ -21,6 +21,7 @@ add_library(${PROJECT_NAME}
|
|||
grid_raytrace.cpp
|
||||
drawable.cpp
|
||||
drawing_queue.cpp
|
||||
assertion.cpp
|
||||
)
|
||||
set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 14)
|
||||
set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD_REQUIRED ON)
|
||||
|
@ -42,6 +43,7 @@ target_link_libraries(${PROJECT_NAME}
|
|||
PRIVATE ${PNG_LIBRARIES}
|
||||
PUBLIC mycurry_toplevel
|
||||
PUBLIC cloonelgraphics
|
||||
PRIVATE tmxlite
|
||||
)
|
||||
|
||||
target_compile_definitions(${PROJECT_NAME}
|
||||
|
|
Loading…
Reference in a new issue