From ff314f3c5e1b30fed112adb97ab5d29f5a2e108b Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Tue, 18 Mar 2014 19:35:10 +0200 Subject: Add project skeleton --- client/CMakeLists.txt | 26 ++++++++++++++++++++++++++ client/client.c | 30 ++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 client/CMakeLists.txt create mode 100644 client/client.c (limited to 'client') diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt new file mode 100644 index 0000000..70ecd4b --- /dev/null +++ b/client/CMakeLists.txt @@ -0,0 +1,26 @@ +SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY bin) + +# Sources +SET(CLIENT_SOURCE client.c) +SET(CLIENT_INCLUDE) +SET(CLIENT_LIBRARIES bemenu) + +# Warnings +IF (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX) + SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wno-variadic-macros -Wno-long-long") + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wno-variadic-macros -Wno-long-long") +ENDIF () + +IF (UNIX AND CMAKE_COMPILER_IS_GNUCC) + SET(CMAKE_POSITION_INDEPENDENT_CODE ON) + IF (${CMAKE_VERSION} VERSION_LESS 2.8.9) + ADD_DEFINITIONS(-fPIC) + ENDIF () +ENDIF () + +# Compile +INCLUDE_DIRECTORIES(${CLIENT_INCLUDE}) +ADD_EXECUTABLE(client ${CLIENT_SOURCE}) +TARGET_LINK_LIBRARIES(client ${CLIENT_LIBRARIES}) + +# vim: set ts=8 sw=4 tw=0 : diff --git a/client/client.c b/client/client.c new file mode 100644 index 0000000..de5468e --- /dev/null +++ b/client/client.c @@ -0,0 +1,30 @@ +/** + * @file client.c + * + * Sample client using the libbemenu. + * Also usable as dmenu replacement. + */ + +#include + +/** + * Main method + * + * This function gives and takes the life of our program. + * + * @param argc Number of arguments from command line + * @param argv Pointer to array of the arguments + * @return exit status of the program + */ +int main(int argc, char **argv) +{ + (void)argc, (void)argv; + + /* + * code goes here + */ + + return EXIT_SUCCESS; +} + +/* vim: set ts=8 sw=4 tw=0 :*/ -- cgit v1.2.3-70-g09d2