The source code and dockerfile for the GSW2024 AI Lab.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

15 lines
384 B

4 weeks ago
  1. ExternalProject_Add(
  2. carl-parser
  3. GIT_REPOSITORY https://github.com/ths-rwth/carl-parser.git
  4. GIT_TAG master14
  5. CMAKE_ARGS -Dcarl_DIR=${CMAKE_BINARY_DIR}
  6. INSTALL_COMMAND ""
  7. )
  8. ExternalProject_Get_Property(carl-parser BINARY_DIR)
  9. add_dependencies(addons carl-parser)
  10. add_dependencies(carl-parser lib_carl)
  11. add_test(NAME carl-parser COMMAND ${BINARY_DIR}/test/carl-parser-test)