2008-09-07 19:32:07 +00:00
|
|
|
install(FILES kicad.pro
|
|
|
|
DESTINATION ${KICAD_TEMPLATE}
|
|
|
|
COMPONENT resources)
|
2012-10-20 16:16:34 +00:00
|
|
|
|
2012-10-29 21:55:05 +00:00
|
|
|
# template_lst is a list of all templates.
|
|
|
|
set( template_lst
|
|
|
|
raspberrypi-gpio
|
|
|
|
stm32f100-discovery-shield
|
|
|
|
ti-stellaris-boosterpack40
|
|
|
|
ti-stellaris-boosterpack40_min
|
|
|
|
)
|
2012-10-20 16:16:34 +00:00
|
|
|
|
2012-10-29 21:55:05 +00:00
|
|
|
foreach( tpl ${template_lst} )
|
|
|
|
install( DIRECTORY ${tpl}
|
|
|
|
DESTINATION ${KICAD_TEMPLATE}
|
|
|
|
COMPONENT templates )
|
|
|
|
endforeach()
|
2012-10-20 16:16:34 +00:00
|
|
|
|