21 lines
402 B
CMake
21 lines
402 B
CMake
project(TestTemplate)
|
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
include(ExternalProject)
|
|
|
|
ExternalProject_Add(
|
|
sparrow_input
|
|
PREFIX ${PROJECT_SOURCE_DIR}/..
|
|
GIT_REPOSITORY Lendemor:lum1ere%40@https://git.epicsparrow.com/epicsparrow/SparrowInput.git
|
|
)
|
|
|
|
EXTERNALProject_get_property(sparrow_input install_dir)
|
|
|
|
MESSAGE(STATUS ${install_dir})
|
|
|
|
add_library(sparrow_input)
|
|
|
|
include(template.cmake)
|
|
|
|
|