-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add header with licence to generated single includes
- Loading branch information
Showing
5 changed files
with
25 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
echo "// THIS FILE HAS BEEN GENERATED AUTOMATICALLY. DO NOT EDIT DIRECTLY." | ||
echo "// Generated: $(date -u '+%Y-%m-%d %H:%M:%S.%N')" | ||
cat scripts/licence.txt |
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,9 +1,11 @@ | ||
#!/bin/sh | ||
|
||
scripts/GenSingleHeader.py -Iinclude include/cx.hpp > single_include/cx_tmp.hpp | ||
gcc -fpreprocessed -dD -E -P single_include/cx_tmp.hpp > single_include/cx.hpp 2> /dev/null | ||
scripts/generate_header.sh > single_include/cx.hpp | ||
gcc -fpreprocessed -dD -E -P single_include/cx_tmp.hpp >> single_include/cx.hpp 2> /dev/null | ||
rm -f single_include/cx_tmp.hpp | ||
|
||
scripts/GenSingleHeader.py -Iinclude include/wildcards.hpp > single_include/wildcards_tmp.hpp | ||
gcc -fpreprocessed -dD -E -P single_include/wildcards_tmp.hpp > single_include/wildcards.hpp 2> /dev/null | ||
scripts/generate_header.sh > single_include/wildcards.hpp | ||
gcc -fpreprocessed -dD -E -P single_include/wildcards_tmp.hpp >> single_include/wildcards.hpp 2> /dev/null | ||
rm -f single_include/wildcards_tmp.hpp |
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,4 @@ | ||
// Copyright Tomas Zeman 2018. | ||
// Distributed under the Boost Software License, Version 1.0. | ||
// (See accompanying file LICENSE_1_0.txt or copy at | ||
// http://www.boost.org/LICENSE_1_0.txt) |
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