This commit is contained in:
halx99 2022-02-25 15:04:52 +08:00
parent 187f8eaff9
commit 2baa40248f
2 changed files with 6 additions and 1 deletions

View File

@ -17,6 +17,7 @@ endif()
set(COCOS_BASE_HEADER
base/astc.h
base/pvr.h
base/format.h
base/CCValue.h
base/CCEventListenerMouse.h
base/atitc.h

View File

@ -66,7 +66,6 @@ add_library(thirdparty STATIC empty.cpp)
# header only libs
target_include_directories(thirdparty
INTERFACE "fmt/include"
INTERFACE "robin-map/include"
)
@ -328,6 +327,11 @@ if(AX_WITH_YAML_CPP)
# target_link_libraries(thirdparty yaml-cpp)
endif()
# fmtlib
add_subdirectory(fmt)
target_link_libraries(thirdparty fmt-header-only)
configure_target_outdir(fmt)
# kcp
if(AX_WITH_KCP)
add_subdirectory(kcp)