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
# - try to find the dbus-cxx library | |
# | |
# Finddbus-cxx.cmake | |
# | |
# Cache Variables: (probably not for direct use in CMakeLists.txt) | |
# DBUS-CXX_ROOT_DIR | |
# DBUS-CXX_LIBRARY | |
# DBUS-CXX_INCLUDE_DIR | |
# | |
# Non-cache variables you might use in your CMakeLists.txt: |
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
/** | |
* A simple program to compare different ways of getting your program's name. | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
extern char* __progname; | |
extern char* program_invocation_name; | |
extern char* program_invocation_short_name; |
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
/** | |
* Title: gpio.c | |
* | |
* Author: Andrew Montag | |
* [email protected] | |
* sites.google.com/site/andrewmontag | |
* | |
* Licence: Boost Software Licence - Verison 1.0 | |
* http://www.boost.org/users/license.html | |
* |
NewerOlder