KicadLib/library/CMakeLists.txt
f3nix bed3169521 CMake:
* Require CMake version 2.6.1 on Windows and version 2.6.0 for other systems.
* Update FindSubversion to version from CMake 2.6.1 (localization issue solved).
* Remove FindwxWidgetsCVS and use the default one (some issues solved upstream).
* Formatting style changes.
2008-09-07 19:32:07 +00:00

16 lines
369 B
CMake

file(GLOB dcm_files "*.dcm")
file(GLOB lib_files "*.lib")
file(GLOB sym_files "*.sym")
install(FILES ${dcm_files}
DESTINATION ${KICAD_LIBRARY}
COMPONENT resources)
install(FILES ${lib_files}
DESTINATION ${KICAD_LIBRARY}
COMPONENT resources)
install(FILES ${sym_files}
DESTINATION ${KICAD_LIBRARY}
COMPONENT resources)