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.
 
 
 
 
 
 

19 lines
637 B

# Misc stuff to setup ci tools
configure_file( ${CMAKE_SOURCE_DIR}/.ci/sonarcloud.properties.in ${CMAKE_BINARY_DIR}/sonarcloud.properties)
unset(PYTHON_EXECUTABLE CACHE)
find_package(PythonInterp 3 QUIET)
if(PYTHONINTERP_FOUND)
add_custom_target(.travis.yml)
add_custom_command(
TARGET .travis.yml
BYPRODUCTS ${CMAKE_SOURCE_DIR}/.travis.yml
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/.ci/travis_generate.py
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/.ci/
)
message(STATUS "Run \"make .travis.yml\" to rebuild the travis file.")
else()
message(STATUS "Did not find python3, target .travis.yml is not available.")
endif()