summaryrefslogtreecommitdiffstats
path: root/arduino-cmake/cmake/modules/Platform/ArduinoPaths.cmake
diff options
context:
space:
mode:
authorAlexander Kauerz <kauerz@informatik.uni-luebeck.de>2012-02-09 22:57:52 +0100
committerAlexander Kauerz <kauerz@informatik.uni-luebeck.de>2012-02-09 22:57:52 +0100
commit8f428f51b4b62d1f07c88cace7bb127e436271a5 (patch)
tree0686d31b1f2ee3ab3d5bc8a1e8a7069df1c8c7ec /arduino-cmake/cmake/modules/Platform/ArduinoPaths.cmake
parent77d976bad1c950d2a8e6e28f116ebc47c764528b (diff)
downloadledmatrix-8f428f51b4b62d1f07c88cace7bb127e436271a5.tar
ledmatrix-8f428f51b4b62d1f07c88cace7bb127e436271a5.zip
cmake hinzu
Diffstat (limited to 'arduino-cmake/cmake/modules/Platform/ArduinoPaths.cmake')
-rw-r--r--arduino-cmake/cmake/modules/Platform/ArduinoPaths.cmake21
1 files changed, 21 insertions, 0 deletions
diff --git a/arduino-cmake/cmake/modules/Platform/ArduinoPaths.cmake b/arduino-cmake/cmake/modules/Platform/ArduinoPaths.cmake
new file mode 100644
index 0000000..2737209
--- /dev/null
+++ b/arduino-cmake/cmake/modules/Platform/ArduinoPaths.cmake
@@ -0,0 +1,21 @@
+if(UNIX)
+ include(Platform/UnixPaths)
+ if(APPLE)
+ list(APPEND CMAKE_SYSTEM_PREFIX_PATH ~/Applications
+ /Applications
+ /Developer/Applications
+ /sw # Fink
+ /opt/local) # MacPorts
+ endif()
+elseif(WIN32)
+ include(Platform/WindowsPaths)
+endif()
+
+if(ARDUINO_SDK_PATH)
+ if(WIN32)
+ list(APPEND CMAKE_SYSTEM_PREFIX_PATH ${ARDUINO_SDK_PATH}/hardware/tools/avr/bin)
+ list(APPEND CMAKE_SYSTEM_PREFIX_PATH ${ARDUINO_SDK_PATH}/hardware/tools/avr/utils/bin)
+ elseif(APPLE)
+ list(APPEND CMAKE_SYSTEM_PREFIX_PATH ${ARDUINO_SDK_PATH}/hardware/tools/avr/bin)
+ endif()
+endif()