diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2012-10-01 09:08:52 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-01 09:14:43 +0200 |
commit | b8d34c22c479bd5def2744eae3a9380d3ff843c2 (patch) | |
tree | b1d5eaf327f4fe0a2a58851c0a5abfa5e3cc74c6 | |
parent | b781c67a6bb80823c629dbc2824672c338f029cb (diff) | |
download | libuca-b8d34c22c479bd5def2744eae3a9380d3ff843c2.tar.gz libuca-b8d34c22c479bd5def2744eae3a9380d3ff843c2.tar.bz2 libuca-b8d34c22c479bd5def2744eae3a9380d3ff843c2.tar.xz libuca-b8d34c22c479bd5def2744eae3a9380d3ff843c2.zip |
Define plugins as C projects
Otherwise CMake complains about non-existent C++ compilers, which are
not needed here anyway.
-rw-r--r-- | CMakeLists.txt | 1 | ||||
-rw-r--r-- | plugins/mock/CMakeLists.txt | 2 | ||||
-rw-r--r-- | plugins/pco/CMakeLists.txt | 2 | ||||
-rw-r--r-- | plugins/pf/CMakeLists.txt | 2 | ||||
-rw-r--r-- | plugins/pylon/CMakeLists.txt | 3 | ||||
-rw-r--r-- | plugins/ufo/CMakeLists.txt | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b6ac69f..bb53b40 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,5 @@ cmake_minimum_required(VERSION 2.8) +project(uca C) set(TARNAME "libuca") set(UCA_VERSION_MAJOR "1") diff --git a/plugins/mock/CMakeLists.txt b/plugins/mock/CMakeLists.txt index 75d8635..d5b6771 100644 --- a/plugins/mock/CMakeLists.txt +++ b/plugins/mock/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 2.8) -project(ucamock) +project(ucamock C) set(UCA_CAMERA_NAME "mock") diff --git a/plugins/pco/CMakeLists.txt b/plugins/pco/CMakeLists.txt index 7c016b9..a526f4d 100644 --- a/plugins/pco/CMakeLists.txt +++ b/plugins/pco/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 2.8) -project(ucapco) +project(ucapco C) find_package(PCO) find_package(FgLib5) diff --git a/plugins/pf/CMakeLists.txt b/plugins/pf/CMakeLists.txt index f392603..ef11f8f 100644 --- a/plugins/pf/CMakeLists.txt +++ b/plugins/pf/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 2.8) -project(ucapf) +project(ucapf C) find_package(PF) find_package(FgLib5) diff --git a/plugins/pylon/CMakeLists.txt b/plugins/pylon/CMakeLists.txt index 18823a4..9a3c15c 100644 --- a/plugins/pylon/CMakeLists.txt +++ b/plugins/pylon/CMakeLists.txt @@ -1,7 +1,6 @@ cmake_minimum_required(VERSION 2.8) -project(ucapylon) +project(ucapylon C) -find_package(Pylon) if (PYLON_FOUND) set(UCA_CAMERA_NAME "pylon") diff --git a/plugins/ufo/CMakeLists.txt b/plugins/ufo/CMakeLists.txt index fe89668..c7fd21b 100644 --- a/plugins/ufo/CMakeLists.txt +++ b/plugins/ufo/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 2.8) -project(ucaufo) +project(ucaufo C) find_package(IPE) |