Skip to content

Commit

Permalink
Added sample file and minor architecture fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
onnivoro committed Apr 27, 2015
1 parent 8ff3ba3 commit b51cd75
Show file tree
Hide file tree
Showing 16 changed files with 435 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ build/
debug/
release/
docs/
gmon.out
*~
14 changes: 14 additions & 0 deletions include/cros.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
* cros.h
*
* Created on: 27/apr/2015
* Author: nico
*/

#ifndef INCLUDE_CROS_H_
#define INCLUDE_CROS_H_

#include "cros_api.h"
#include "cros_log.h"

#endif /* INCLUDE_CROS_H_ */
4 changes: 0 additions & 4 deletions samples/.gitignore

This file was deleted.

7 changes: 5 additions & 2 deletions samples/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_SOURCE_DIR})
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/bin)

add_executable (raw-api-test raw-api-test.c)
target_link_libraries(raw-api-test cros)

add_executable(parameters-test parameters-test.c)
target_link_libraries(parameters-test cros)
target_link_libraries(parameters-test cros)

add_executable(api-test api-test.c)
target_link_libraries(api-test cros)
Loading

0 comments on commit b51cd75

Please sign in to comment.