fix merge error (#220)

This commit is contained in:
Yun Hsiao Wu 2022-02-08 11:00:37 +08:00 committed by GitHub
parent 3cb6ea1f12
commit 5088645437
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

View File

@ -7,11 +7,7 @@ set(BOOST_LIB_NAMES
foreach(lib ${BOOST_LIB_NAMES}) foreach(lib ${BOOST_LIB_NAMES})
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/${lib} boost/${lib}) add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/${lib} boost/${lib})
target_compile_definitions(boost_${lib} PUBLIC BOOST_UUID_FORCE_AUTO_LINK)
set_target_properties(boost_${lib} PROPERTIES FOLDER Utils) set_target_properties(boost_${lib} PROPERTIES FOLDER Utils)
list(APPEND CC_EXTERNAL_LIBS boost_${lib}) list(APPEND CC_EXTERNAL_LIBS boost_${lib})
foreach(lib ${BOOST_LIBS})
set_target_properties(${lib} PROPERTIES FOLDER Utils)
target_compile_definitions(${lib} PUBLIC
BOOST_UUID_FORCE_AUTO_LINK
)
endforeach() endforeach()