forked from Amber-MD/cpptraj
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Have configure and cmake install headers for libcpptraj (Amber-MD#1129)
* Use the install binary * Script to get all headers that should be installed for libcpptraj * Contains all headers that should be installed for libcpptraj * Add target for installing headers * Make header install less verbose. Have libcpptraj install depend on install_headers * Cmake install headers for inside/outside amber * Convert back down to lyx 2.3 for Amber * Update the PDF
- Loading branch information
Showing
9 changed files
with
724 additions
and
267 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
|
||
# Get all header files | ||
|
||
WORKDIR=`pwd` | ||
BASEDIR=`basename $WORKDIR` | ||
if [ "$BASEDIR" != 'src' ] ; then | ||
echo "Should be executed from the CPPTRAJ src directory." | ||
exit 1 | ||
fi | ||
|
||
OUTFILE='cpptrajheaders' | ||
echo "# All cpptraj headers that should be installed for the cpptraj library." > $OUTFILE | ||
echo "CPPTRAJ_HEADERS = \\" >> $OUTFILE | ||
|
||
for DIR in . Cluster Structure Energy ; do | ||
for FILE in `ls $DIR/*.h` ; do | ||
echo " $FILE \\" >> $OUTFILE | ||
done | ||
done | ||
echo "" >> $OUTFILE | ||
|
||
exit 0 |
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
Binary file not shown.
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,3 @@ | ||
b37726e7a841f6fc695ecd7fb040ffbf CpptrajDevelopmentGuide.lyx | ||
786c4aec62d60a3f9265dec52b767e02 cpptraj.lyx | ||
07c4039e732fc2eb1df0c1e0863cb949 CpptrajManual.lyx | ||
1f4d9c647b6717314560290a4d3f9f06 cpptraj.lyx | ||
5d9b5b5ed47a3ded57b6464df99b3585 CpptrajManual.lyx |
Oops, something went wrong.