Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
e21bd247
Commit
e21bd247
authored
Oct 29, 2012
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add new templates to template/CMakeLists.txt, group all templates into one installation COMPONENT
parent
df810f74
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
CMakeLists.txt
template/CMakeLists.txt
+12
-6
No files found.
template/CMakeLists.txt
View file @
e21bd247
...
...
@@ -2,11 +2,17 @@ install(FILES kicad.pro
DESTINATION
${
KICAD_TEMPLATE
}
COMPONENT resources
)
set
(
Templates raspberrypi-gpio stm32f100-discovery-shield
)
# template_lst is a list of all templates.
set
(
template_lst
raspberrypi-gpio
stm32f100-discovery-shield
ti-stellaris-boosterpack40
ti-stellaris-boosterpack40_min
)
foreach
(
Template
${
Templates
}
)
install
(
DIRECTORY
${
Template
}
DESTINATION
${
KICAD_TEMPLATE
}
COMPONENT
${
Template
}
)
endforeach
(
Template
)
foreach
(
tpl
${
template_lst
}
)
install
(
DIRECTORY
${
tpl
}
DESTINATION
${
KICAD_TEMPLATE
}
COMPONENT templates
)
endforeach
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment