Skip to content

Commit

Permalink
libibuddy-0.0.1
Browse files Browse the repository at this point in the history
First import
  • Loading branch information
rosorio committed Oct 24, 2018
0 parents commit 2c8951e
Show file tree
Hide file tree
Showing 12 changed files with 928 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CMakeLists.txt
@@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 2.6)

project(LIBIBUDDY)
add_subdirectory(src)
add_subdirectory(test)
add_subdirectory(tools)

set(CMAKE_CXX_FLAGS "-g -Wall")

6 changes: 6 additions & 0 deletions Changes
@@ -0,0 +1,6 @@
Revision history for libibbudy.

Summary for 0.0.1 libibbudy release
- original version including the library,
the command line tool (ibuddycmd) and a test
code to check the liniking.
12 changes: 12 additions & 0 deletions src/CMakeLists.txt
@@ -0,0 +1,12 @@
include_directories(${LIBIBUDDY_SOURCE_DIR}/src /usr/include /usr/local/include)
link_directories(${LIBIBUDDY_SOURCE_DIR}/src /usr/lib /usr/local/lib)
add_definitions( -DLIBIBUDDY_VERSION_STRING=\"0.0.1\" )

add_library(ibuddy SHARED ibuddy.c util.c)
target_link_libraries(ibuddy usb)


install(TARGETS ibuddy DESTINATION lib)



0 comments on commit 2c8951e

Please sign in to comment.