CMakeLists.txt 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #
  2. # SuperTux - squirrel library build script
  3. # Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. #
  19. SET(CMAKE_MACOSX_RPATH ON)
  20. ## Apply patch that fixes some Coverity errors
  21. ## Apply coverity patch to Squirrel?
  22. SET(APPLY_COVERITY_PATCH FALSE)
  23. SET(WORKING_DIR WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
  24. IF(APPLY_COVERITY_PATCH)
  25. FIND_PROGRAM(PATCH_EXECUTABLE patch)
  26. IF(PATCH_EXECUTABLE)
  27. SET(PATCH_COMMAND git apply --whitespace=fix --inaccurate-eof)
  28. # Find patch files
  29. FILE(GLOB_RECURSE PATCH_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
  30. ${CMAKE_CURRENT_SOURCE_DIR}/patches/*.patch
  31. ${CMAKE_CURRENT_SOURCE_DIR}/patches/*.diff)
  32. # Execute patch files
  33. FOREACH(file ${PATCH_FILES})
  34. MESSAGE(STATUS "Found patch file ${file}.")
  35. EXECUTE_PROCESS(COMMAND ${PATCH_COMMAND} ${CMAKE_CURRENT_SOURCE_DIR}/${file} ${WORKING_DIR})
  36. ENDFOREACH(file)
  37. ENDIF(PATCH_EXECUTABLE)
  38. ENDIF(APPLY_COVERITY_PATCH)
  39. ## Add include/ to include directories
  40. INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include/)
  41. ## build list of source files
  42. FILE(GLOB SQUIRREL_SOURCES squirrel/*.cpp sqstdlib/*.cpp sqstdlib/*.c)
  43. ## Add in squirrel debug stuff
  44. OPTION(ENABLE_SQDBG "Build squirrel script interpreter with debugging options" OFF)
  45. IF(ENABLE_SQDBG)
  46. INCLUDE_DIRECTORIES (${CMAKE_CURRENT_SOURCE_DIR}/squirrel/)
  47. FILE(GLOB SQDBG_SOURCES sqdbg/*.cpp)
  48. SET(SQUIRREL_SOURCES ${SQDBG_SOURCES} ${SQUIRREL_SOURCES})
  49. ENDIF(ENABLE_SQDBG)
  50. # the squirrel sources are out of our control so don't be too pedantic about
  51. # them
  52. SET(CMAKE_CXX_FLAGS "")
  53. SET(CMAKE_C_FLAGS "")
  54. ## define a target for building the library
  55. ADD_LIBRARY(squirrel ${SQUIRREL_SOURCES})
  56. # use standardized variable name
  57. set(LIB_SUBDIR "lib${LIB_SUFFIX}"
  58. CACHE STRING "Subdirectory of prefix into which libraries are installed (e.g., lib32, lib64)")
  59. INSTALL(TARGETS squirrel
  60. ARCHIVE DESTINATION ${LIB_SUBDIR}
  61. LIBRARY DESTINATION ${LIB_SUBDIR}
  62. COMPONENT squirrel)