1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/sources/framework/CMakeLists.txt

28 lines
708 B
CMake
Raw Permalink Normal View History

2024-03-18 15:41:46 -03:00
# CMakeList.txt : CMake project for xna, include source and define
# project specific logic here.
#
# Add source to this project's executable.
2024-05-25 14:15:48 -03:00
add_library (Xn65 STATIC
2024-05-01 19:09:43 -03:00
"game/component.cpp"
2024-07-07 16:06:05 -03:00
"game/servicecontainer.cpp"
2024-05-01 19:09:43 -03:00
"content/manager.cpp"
"content/reader.cpp"
2024-05-10 15:51:03 -03:00
"content/lzx/decoder.cpp"
"content/typereadermanager.cpp"
"common/color.cpp"
2024-05-16 17:23:52 -03:00
"common/collision.cpp"
"common/gjk.cpp"
2024-05-25 11:23:41 -03:00
"common/numerics.cpp"
"common/packedvalue.cpp"
2024-11-16 19:07:04 -03:00
"graphics/displaymode.cpp"
)
2024-03-18 15:41:46 -03:00
if (CMAKE_VERSION VERSION_GREATER 3.12)
2024-05-25 14:15:48 -03:00
set_property(TARGET Xn65 PROPERTY CXX_STANDARD 20)
2024-03-18 15:41:46 -03:00
endif()
2024-11-16 19:07:04 -03:00
#find_package(tinyxml2 CONFIG REQUIRED)
target_link_libraries(Xn65 CSharp++ "${PROJECT_VCPKG_DIRECTORY}/installed/x64-windows/lib/tinyxml2.lib")