X-Git-Url: https://git.ao2.it/libam7xxx.git/blobdiff_plain/5e7d217e7f1d40fbfb6bc6375421a21bd5572788..bbebd199987581ee6f344c89bfb02237dc0ab0bd:/src/CMakeLists.txt diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1228201..d6cdaad 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,11 +1,15 @@ -add_definitions("-D_BSD_SOURCE") # for htole32() -add_definitions("-D_POSIX_C_SOURCE=2") # for getopt() +add_definitions("-D_DEFAULT_SOURCE") # for htole32() +add_definitions("-D_POSIX_C_SOURCE=200112L") # for nanosleep() and lroundf() + +# Express a preference for C99 format strings when using MinGW, see: +# https://sourceforge.net/p/mingw-w64/wiki2/gnu%20printf/ +add_definitions("-D__USE_MINGW_ANSI_STDIO=1") # Find packages needed to build library find_package(libusb-1.0 REQUIRED) include_directories(${LIBUSB_1_INCLUDE_DIRS}) -set(SRC am7xxx.c serialize.c) +set(SRC am7xxx.c serialize.c tools.c) # Build the library add_library(am7xxx SHARED ${SRC}) @@ -23,8 +27,15 @@ endif() install(TARGETS am7xxx-static DESTINATION "${CMAKE_INSTALL_PREFIX}/lib") -target_link_libraries(am7xxx ${LIBUSB_1_LIBRARIES}) -target_link_libraries(am7xxx-static ${LIBUSB_1_LIBRARIES}) +if(NOT WIN32) + find_library(MATH_LIB m) +else() + # not needed on windows + set(MATH_LIB "") +endif() + +target_link_libraries(am7xxx ${MATH_LIB} ${LIBUSB_1_LIBRARIES}) +target_link_libraries(am7xxx-static ${MATH_LIB} ${LIBUSB_1_LIBRARIES}) # Install the header files install(FILES "am7xxx.h" @@ -32,13 +43,7 @@ install(FILES "am7xxx.h" 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() - -# Build the test app -add_executable(picoproj picoproj.c) -target_link_libraries(picoproj am7xxx) -install(TARGETS picoproj - DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")