projects
/
libam7xxx.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Remove douled semicolons
[libam7xxx.git]
/
src
/
CMakeLists.txt
diff --git
a/src/CMakeLists.txt
b/src/CMakeLists.txt
index
39f4e86
..
bec1d5c
100644
(file)
--- a/
src/CMakeLists.txt
+++ b/
src/CMakeLists.txt
@@
-1,11
+1,10
@@
add_definitions("-D_BSD_SOURCE") # for htole32()
add_definitions("-D_BSD_SOURCE") # for htole32()
-add_definitions("-D_POSIX_C_SOURCE=2") # for getopt()
# Find packages needed to build library
find_package(libusb-1.0 REQUIRED)
include_directories(${LIBUSB_1_INCLUDE_DIRS})
# Find packages needed to build library
find_package(libusb-1.0 REQUIRED)
include_directories(${LIBUSB_1_INCLUDE_DIRS})
-set(SRC am7xxx.c)
+set(SRC am7xxx.c
serialize.c
)
# Build the library
add_library(am7xxx SHARED ${SRC})
# Build the library
add_library(am7xxx SHARED ${SRC})
@@
-32,13
+31,7
@@
install(FILES "am7xxx.h"
if(UNIX AND NOT APPLE)
# Produce a pkg-config file for linking against the shared lib
if(UNIX AND NOT APPLE)
# Produce a pkg-config file for linking against the shared lib
- configure_file
("libam7xxx.pc.in" "libam7xxx.pc" @ONLY)
+ configure_file("libam7xxx.pc.in" "libam7xxx.pc" @ONLY)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libam7xxx.pc"
DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig")
endif()
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libam7xxx.pc"
DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig")
endif()
-
-# Build the test app
-add_executable(picoproj picoproj.c)
-target_link_libraries(picoproj am7xxx)
-install(TARGETS picoproj
- DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")