mirror of https://github.com/axmolengine/axmol.git
Fix #597
This commit is contained in:
parent
187f8eaff9
commit
2baa40248f
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue