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.
 
 
 
 
 
 

23 lines
589 B

cmake_minimum_required(VERSION 3.0.0)
project(carl-version)
find_package(carl REQUIRED)
find_package(carlparser QUIET)
# Set configuration
set(CARL_DIR ${carl_DIR})
set(CARL_VERSION ${carl_VERSION})
if(carlparser_FOUND)
set(CARL_PARSER_DIR ${carl_parser_DIR})
set(CARL_WITH_PARSER "True")
else()
set(CARL_PARSER_DIR "")
set(CARL_WITH_PARSER "False")
endif()
if(CARL_USE_CLN_NUMBERS)
set(CARL_WITH_CLN "True")
else()
set(CARL_WITH_CLN "False")
endif()
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.py.in ${CMAKE_CURRENT_BINARY_DIR}/generated/config.py @ONLY)