X-Git-Url: https://git.ao2.it/libam7xxx.git/blobdiff_plain/3bc2d7cac242b47443795ddef34c48bc9d359780..506d4b4a864a1d02ba0114afdad4654bf60da316:/src/CMakeLists.txt diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e09a282..0817374 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -22,7 +22,12 @@ endif() install(TARGETS am7xxx-static DESTINATION "${CMAKE_INSTALL_PREFIX}/lib") -find_library(MATH_LIB m) +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})