-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from domrest/temp_detector
Temp detector
- Loading branch information
Showing
30 changed files
with
346 additions
and
677 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
cmake_minimum_required(VERSION 3.10) | ||
|
||
# set the project name | ||
project(Trashbot) | ||
|
||
file(GLOB INCLUDE CONFIGURE_DEPENDS | ||
"include/messaging/*.h" | ||
"include/messaging/*.hpp" | ||
"include/GPIO/*.h") | ||
file(GLOB CPP CONFIGURE_DEPENDS "lib/*.cpp") | ||
|
||
|
||
# add the executable | ||
add_executable(Trashbot | ||
${CPP} | ||
${INCLUDE} | ||
) | ||
|
||
target_link_libraries(Trashbot | ||
pigpio | ||
crypto | ||
boost_iostreams | ||
boost_filesystem | ||
pthread | ||
boost_thread | ||
boost_system | ||
ssl | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.