Advertisement
Guest User

Untitled

a guest
Aug 14th, 2011
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 1.08 KB | None | 0 0
  1. #Copyright (C) 2011  Devin DeLong
  2. #
  3. #    This program is free software: you can redistribute it and/or modify
  4. #    it under the terms of the GNU General Public License as published by
  5. #    the Free Software Foundation, either version 3 of the License, or
  6. #    (at your option) any later version.
  7. #
  8. #    This program is distributed in the hope that it will be useful,
  9. #    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. #    GNU General Public License for more details.
  12. #
  13. #    You should have received a copy of the GNU General Public License
  14. #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
  15.  
  16. #INCLUDE(${PROJECT_SOURCE_DIR}/cmake/arduino-duemilanove.cmake)
  17.  
  18. INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/include)
  19.  
  20. SET(SOURCE_FILES
  21.   HardwareSerial.cpp
  22.   pins_arduino.c
  23.   Print.cpp
  24.   WInterrupts.c
  25.   wiring_analog.c
  26.   wiring.c
  27.   wiring_digital.c
  28.   wiring_pulse.c
  29.   wiring_shift.c
  30.   WMath.cpp
  31.   WString.cpp
  32. #  Tone.cpp
  33. )
  34.  
  35. ADD_LIBRARY (arduino-core STATIC ${SOURCE_FILES})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement