You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
363 B
9 lines
363 B
include(ExternalProject)
|
|
ExternalProject_Add(
|
|
xercesc
|
|
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/xercesc-3.1.2
|
|
CONFIGURE_COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/xercesc-3.1.2/configure --prefix=${CMAKE_CURRENT_BINARY_DIR}/xercesc-3.1.2
|
|
PREFIX ${CMAKE_CURRENT_BINARY_DIR}/xercesc-3.1.2
|
|
BUILD_COMMAND make
|
|
BUILD_IN_SOURCE 1
|
|
)
|