Back to home page

EIC code displayed by LXR

 
 

    


Warning, /acts/Tests/DownstreamProjectNodeps/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 cmake_minimum_required(VERSION 3.11)
0002 
0003 project(ActsDownstreamProjectNodeps)
0004 
0005 find_package(Acts CONFIG REQUIRED COMPONENTS Core)
0006 
0007 # place artifacts in GNU-like paths, e.g. binaries in `<build>/bin`
0008 include(GNUInstallDirs)
0009 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
0010     "${PROJECT_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}"
0011 )
0012 set(CMAKE_LIBRARY_OUTPUT_DIRECTORY
0013     "${PROJECT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}"
0014 )
0015 
0016 add_executable(ShowActsVersion ShowActsVersion.cpp)
0017 target_link_libraries(
0018     ShowActsVersion
0019     PRIVATE ActsCore Boost::boost Eigen3::Eigen
0020 )