-
Jorrit Schaap authored
Task #7891 Copied LTAIngest as is from https://svn.astron.nl/Operations/branches/task7891/LTAIngest/ and added it under LTA as lofar_package. Added CMakeLists.txt and tested the build and installed output. This revision acts as the starting point for future LTAIngest development/refactoring, thus making the version in Operations obsolete
Jorrit Schaap authoredTask #7891 Copied LTAIngest as is from https://svn.astron.nl/Operations/branches/task7891/LTAIngest/ and added it under LTA as lofar_package. Added CMakeLists.txt and tested the build and installed output. This revision acts as the starting point for future LTAIngest development/refactoring, thus making the version in Operations obsolete
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CMakeLists.txt 1.62 KiB
# $Id$
cmake_minimum_required(VERSION 2.8)
## ---------------------------------------------------------------------------
## Preamble: set compilers
## ---------------------------------------------------------------------------
include(CMake/LofarInit.cmake)
## ---------------------------------------------------------------------------
## Project characteristics
## ---------------------------------------------------------------------------
project(LOFAR)
include(LofarGeneral)
## ---------------------------------------------------------------------------
## LOFAR packages: build all, unless BUILD_PACKAGES was specified
## ---------------------------------------------------------------------------
include(LofarPackage)
if(NOT DEFINED BUILD_PACKAGES)
lofar_add_package(LCS)
lofar_add_package(CEP)
lofar_add_package(RTCP)
lofar_add_package(SAS)
lofar_add_package(MAC)
lofar_add_package(LCU)
lofar_add_package(LTA)
lofar_add_package(SubSystems)
else(NOT DEFINED BUILD_PACKAGES)
separate_arguments(BUILD_PACKAGES)
foreach(pkg ${BUILD_PACKAGES})
lofar_add_package(${pkg} REQUIRED)
endforeach(pkg ${BUILD_PACKAGES})
endif(NOT DEFINED BUILD_PACKAGES)
## ---------------------------------------------------------------------------
## Check if Doxygen is present; if so, generate doxygen configuration file.
## ---------------------------------------------------------------------------
include(LofarDoxygen)
## ---------------------------------------------------------------------------
## Generate configuration header file.
## ---------------------------------------------------------------------------
include(LofarConfig)