-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
35 lines (31 loc) · 1010 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
cmake_minimum_required(VERSION 3.8)
project(homegear_intertechno)
set(CMAKE_CXX_STANDARD 11)
set(SOURCE_FILES
src/PhysicalInterfaces/Coc.cpp
src/PhysicalInterfaces/Coc.h
src/PhysicalInterfaces/Cul.cpp
src/PhysicalInterfaces/Cul.h
src/PhysicalInterfaces/Cunx.cpp
src/PhysicalInterfaces/Cunx.h
src/PhysicalInterfaces/IIntertechnoInterface.cpp
src/PhysicalInterfaces/IIntertechnoInterface.h
src/PhysicalInterfaces/TiCc1100.cpp
src/PhysicalInterfaces/TiCc1100.h
src/Factory.cpp
src/Factory.h
src/GD.cpp
src/GD.h
src/Interfaces.cpp
src/Interfaces.h
src/MyCentral.cpp
src/MyCentral.h
src/MyFamily.cpp
src/MyFamily.h
src/MyPacket.cpp
src/MyPacket.h
src/MyPeer.cpp
src/MyPeer.h
config.h)
add_custom_target(homegear COMMAND ../../makeAll.sh SOURCES ${SOURCE_FILES})
add_library(homegear_intertechno ${SOURCE_FILES})