mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 12:24:56 +00:00
CBeetle implementation
This commit is contained in:
@@ -1,6 +1,14 @@
|
||||
cmake_minimum_required(VERSION 3.10 FATAL_ERROR) # because of c++17
|
||||
set(BUILD_TESTING OFF)
|
||||
add_subdirectory(tinyxml2)
|
||||
|
||||
set(TINYXML_LIB_VERSION "5.0.1")
|
||||
set(TINYXML_LIB_SOVERSION "5")
|
||||
add_library(tinyxml2_static STATIC tinyxml2/tinyxml2.cpp tinyxml2/tinyxml2.h)
|
||||
set_target_properties(tinyxml2_static PROPERTIES
|
||||
COMPILE_DEFINITONS "TINYXML2_EXPORT"
|
||||
VERSION "${TINYXML_LIB_VERSION}"
|
||||
SOVERSION "${TINYXML_LIB_SOVERSION}")
|
||||
set_target_properties( tinyxml2_static PROPERTIES OUTPUT_NAME tinyxml2 )
|
||||
|
||||
add_executable(assetnameparser "main.cpp")
|
||||
include_directories(${LOGVISOR_INCLUDE_DIR})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user