-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[enhancement] Add setenv.local examples
- Loading branch information
Mathieu Renard
committed
May 17, 2019
1 parent
bbcdaa7
commit 4bd9298
Showing
3 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#local configuration | ||
setenv.local.sh | ||
libs/* | ||
#backup | ||
*-bak | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env sh | ||
|
||
# Kicad python path | ||
# Example for Debian | ||
export PYTHON_BIN_PATH=/usr/bin/python3 | ||
export PYTHON_PATH=/usr/lib/python3/site-packages | ||
export BOM_GEN_PATH=/usr/share/kicad/plugins/bom2grouped_csv.xsl | ||
export TOOLS_PATH=../../../tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/env sh | ||
|
||
# Kicad python path | ||
# Example for Mac OSX | ||
export PYTHON_BIN_PATH=/Applications/KiCad/kicad.app/Contents//Frameworks/Python.framework/Versions/2.7/bin/python | ||
export PYTHON_PATH=/Applications/Kicad/kicad.app/Contents/Frameworks/python/site-packages | ||
export BOM_GEN_PATH=/Applications/Kicad/kicad.app/Contents/SharedSupport/plugins/bom2grouped_csv.xsl | ||
export TOOLS_PATH=../../../tools | ||
|
||
|
||
|
||
|
||
|
||
|