This repository has been archived by the owner on Jun 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
441 additions
and
2,305 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 |
---|---|---|
|
@@ -30,4 +30,6 @@ | |
# Build and bin directory | ||
bin/* | ||
build/* | ||
config/* | ||
config/* | ||
ide/* | ||
test/bin/* |
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 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 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 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 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,20 @@ | ||
message("External project: Restclient") | ||
|
||
ExternalProject_Add(restclient | ||
GIT_REPOSITORY ${git_protocol}://github.com/mrtazz/restclient-cpp | ||
SOURCE_DIR restclient | ||
BUILD_IN_SOURCE 1 | ||
UPDATE_COMMAND "" | ||
PATCH_COMMAND "" | ||
CONFIGURE_COMMAND ./autogen.sh && ./configure | ||
BUILD_COMMAND make && cp .libs/librestclient-cpp.a ../thirdparty/lib/ | ||
INSTALL_COMMAND "" | ||
) | ||
|
||
set(RESTCLIENT_INCLUDE_DIR ${CMAKE_BINARY_DIR}/restclient/include/) | ||
set(RESTCLIENT_LIBRARY_DIR ${CMAKE_BINARY_DIR}/thirdparty/lib/) | ||
|
||
set(RESTCLIENT_LIBRARIES restclient-cpp curl) | ||
|
||
include_directories(${RESTCLIENT_INCLUDE_DIR}) | ||
link_directories(${RESTCLIENT_LIBRARY_DIR}) |
This file was deleted.
Oops, something went wrong.
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 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 |
---|---|---|
@@ -1,16 +1,26 @@ | ||
<?xml version="1.0"?> | ||
<captures> | ||
|
||
<USBCamera> | ||
<frameWidth type="number">800</frameWidth> | ||
<frameHeight type="number">640</frameHeight> | ||
<IPCamera> | ||
<url type="text">http://username:password@ipaddress/image.jpg</url> | ||
<frameWidth type="number">800</frameWidth> | ||
<frameHeight type="number">640</frameHeight> | ||
<delay type="number">500</delay> | ||
<angle type="number">0</angle> | ||
</IPCamera> | ||
|
||
<USBCamera> | ||
<frameWidth type="number">800</frameWidth> | ||
<frameHeight type="number">640</frameHeight> | ||
<delay type="number">500</delay> | ||
<angle type="number">0</angle> | ||
</USBCamera> | ||
|
||
<RaspiCamera> | ||
<frameWidth type="number">800</frameWidth> | ||
<frameHeight type="number">640</frameHeight> | ||
<night type="number">0</night> | ||
<day type="number">0</day> | ||
<delay type="number">500</delay> | ||
<angle type="number">0</angle> | ||
</RaspiCamera> | ||
|
||
</captures> |
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 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
Oops, something went wrong.