@@ -33,32 +33,18 @@ configure_file (
33
33
34
34
# Options
35
35
option (RASPBERRYPI "Build for the RaspberryPi." OFF )
36
- option (GALILEO "Build for the Intel Galileo." OFF )
37
- option (EDISON "Build for the Intel Galileo." OFF )
36
+ option (DEVICEINTEL "Build for the Intel Galileo." OFF )
38
37
option (BEAGLEBONE "Build for the Beaglebone." OFF )
39
- option (MINNOWBOARDMAX "Build for the Minnowboard Max." OFF )
40
38
option (REDPITAYA "Build for the RedPitaya." OFF )
41
39
option (UDOONEO "Build for the UDOO NEO." OFF )
42
40
option (SERVER "Build for the Server." OFF )
43
41
44
42
# Option management
45
- if (GALILEO )
46
- add_definitions (-DARDUINOGALILEO )
43
+ if (DEVICEINTEL )
44
+ add_definitions (-DDEVICEINTEL )
47
45
pkg_check_modules (MRAA REQUIRED mraa>=0.4.0)
48
46
message (INFO "found libmraa version: ${MRAA_VERSION} " )
49
- set (FLAGS "-DARDUINOGALILEO" )
50
-
51
- elseif (EDISON)
52
- add_definitions (-DEDISON)
53
- pkg_check_modules (MRAA REQUIRED mraa>=0.4.0)
54
- message (INFO "found libmraa version: ${MRAA_VERSION} " )
55
- set (FLAGS "-DEDISON" )
56
-
57
- elseif (MINNOWBOARDMAX)
58
- add_definitions (-DMINNOWBOARDMAX)
59
- pkg_check_modules (MRAA REQUIRED mraa>=0.4.0)
60
- message (INFO "found libmraa version: ${MRAA_VERSION} " )
61
- set (FLAGS "-DMINNOWBOARDMAX" )
47
+ set (FLAGS "-DDEVICEINTEL" )
62
48
63
49
elseif (RASPBERRYPI)
64
50
add_definitions (-DRASPBERRYPI)
@@ -144,6 +130,8 @@ set (wyliodrin_LIB_SRCS
144
130
add_subdirectory (src)
145
131
add_subdirectory (languages)
146
132
133
+ add_subdirectory (wylio)
134
+
147
135
if (SERVER)
148
136
else ()
149
137
install (FILES scripts/install_social DESTINATION bin/ PERMISSIONS WORLD_READ WORLD_EXECUTE)
0 commit comments