This is an initial pass, simply moving the existing logic as-is. Future PR's will attempt to refactor and improve the cmake stuff.
12 lines
365 B
CMake
12 lines
365 B
CMake
macro(SetupXercesC)
|
|
# -------------------------------- XercesC --------------------------------
|
|
|
|
find_package(XercesC REQUIRED)
|
|
if(NOT XercesC_FOUND)
|
|
message(FATAL_ERROR "==================\n"
|
|
"XercesC not found.\n"
|
|
"==================\n")
|
|
endif(NOT XercesC_FOUND)
|
|
|
|
endmacro(SetupXercesC)
|