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

17 lines
477 B
CMake
Raw Normal View History

2024-12-02 15:07:37 -03:00
# CMakeList.txt : CMake project for xna, include source and define
# project specific logic here.
#
# Add source to this project's executable.
add_library (CSharp++ STATIC
"exception.cpp"
2024-12-14 16:57:20 -03:00
"io/stream.cpp" "io/binary.cpp" )
2024-12-02 15:07:37 -03:00
if (CMAKE_VERSION VERSION_GREATER 3.12)
set_property(TARGET CSharp++ PROPERTY CXX_STANDARD 20)
endif()
#find_package(tinyxml2 CONFIG REQUIRED)
target_link_libraries(CSharp++ "${PROJECT_VCPKG_DIRECTORY}/installed/x64-windows/lib/tinyxml2.lib")