-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
33 lines (29 loc) · 796 Bytes
/
CMakeLists.txt
File metadata and controls
33 lines (29 loc) · 796 Bytes
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
cmake_minimum_required(VERSION 3.0)
project(OneWireHub)
add_definitions(-std=c++11 -Wall -Wextra -pipe -march=native -mtune=native)
#add_subdirectory(src)
#include_directories(./src)
set(SOURCE_FILES
main.cpp
src/BAE910.cpp
src/DS18B20.cpp
src/DS2401.cpp
src/DS2405.cpp
src/DS2408.cpp
src/DS2413.cpp
src/DS2423.cpp
src/DS2430.cpp
src/DS2431.cpp
src/DS2433.cpp
src/DS2434.cpp
src/DS2438.cpp
src/DS2450.cpp
src/DS2502.cpp
src/DS2506.cpp
src/DS2890.cpp
src/OneWireHub.cpp
src/OneWireHub_config.h
src/OneWireItem.cpp
src/platform.cpp
) # TODO: this does not have to be manual
add_executable(OneWireHub ${SOURCE_FILES})