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.

8 lines
363 B

  1. include(ExternalProject)
  2. ExternalProject_Add(
  3. xercesc
  4. SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/xercesc-3.1.2
  5. CONFIGURE_COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/xercesc-3.1.2/configure --prefix=${CMAKE_CURRENT_BINARY_DIR}/xercesc-3.1.2
  6. PREFIX ${CMAKE_CURRENT_BINARY_DIR}/xercesc-3.1.2
  7. BUILD_COMMAND make
  8. BUILD_IN_SOURCE 1
  9. )