projects
/
libam7xxx.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
d9d124e
)
am7xxx: don't look for the math library when compiling for Windows
author
Antonio Ospite <ospite@studenti.unina.it>
Thu, 10 May 2012 07:34:01 +0000
(09:34 +0200)
committer
Antonio Ospite <ospite@studenti.unina.it>
Thu, 10 May 2012 13:58:00 +0000
(15:58 +0200)
src/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/src/CMakeLists.txt
b/src/CMakeLists.txt
index
e09a282
..
0817374
100644
(file)
--- 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})