-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor README and Arch Linux Install Instructions [2] (#643)
* Added emacs and vim artifacts to gitignore * Modified Arch Linux build instructions for custom tested config.pri * Removed unneccesary instructions for gitignore and added source comments * Added template Arch Linux build instructions * Added mention of template archlinux config in install instructions
- Loading branch information
1 parent
cf38f48
commit c4c06b6
Showing
4 changed files
with
128 additions
and
44 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
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
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
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,25 @@ | ||
# This file should be used when building | ||
# on an Arch-based Linux distro such as | ||
# Manjaro, Arch, ArcoLinux, Hyperbola GNU/Linux, etc. | ||
# Detailed instructions can be found in INSTALL_LINUX.md | ||
|
||
boost: LIBS += -lboost_serialization | ||
expat: LIBS += -lexpat | ||
expat: PKGCONFIG -= expat | ||
cairo { | ||
PKGCONFIG += cairo | ||
LIBS -= $$system(pkg-config --variable=libdir cairo)/libcairo.a | ||
} | ||
pyside { | ||
PKGCONFIG -= pyside | ||
INCLUDEPATH += $$system(pkg-config --variable=includedir pyside-py2) | ||
INCLUDEPATH += $$system(pkg-config --variable=includedir pyside-py2)/QtCore | ||
INCLUDEPATH += $$system(pkg-config --variable=includedir pyside-py2)/QtGui | ||
INCLUDEPATH += $$system(pkg-config --variable=includedir QtGui) | ||
LIBS += -lpyside-python2.7 | ||
} | ||
shiboken { | ||
PKGCONFIG -= shiboken | ||
INCLUDEPATH += $$system(pkg-config --variable=includedir shiboken-py2) | ||
LIBS += -lshiboken-python2.7 | ||
} |