-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2099 from veelo/issue1053-visuald-extra-files
Include copyFiles and extraDependencyFiles in visuald projects.
- Loading branch information
Showing
9 changed files
with
95 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env bash | ||
|
||
. $(dirname "${BASH_SOURCE[0]}")/common.sh | ||
cd "${CURR_DIR}/issue1053-extra-files-visuald" || die "Could not cd." | ||
|
||
"$DUB" generate visuald | ||
|
||
if [ `grep -c -e "saturate.vert" .dub/extra_files.visualdproj` -ne 1 ]; then | ||
die $LINENO 'Regression of issue #1053.' | ||
fi | ||
|
||
if [ `grep -c -e "warp.geom" .dub/extra_files.visualdproj` -ne 1 ]; then | ||
die $LINENO 'Regression of issue #1053.' | ||
fi | ||
|
||
if [ `grep -c -e "LICENSE.txt" .dub/extra_files.visualdproj` -ne 1 ]; then | ||
die $LINENO 'Regression of issue #1053.' | ||
fi | ||
|
||
if [ `grep -c -e "README.txt" .dub/extra_files.visualdproj` -ne 1 ]; then | ||
die $LINENO 'Regression of issue #1053.' | ||
fi |
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,11 @@ | ||
{ | ||
"name": "extra_files", | ||
"targetType": "executable", | ||
"extraDependencyFiles": [ | ||
"shaders/*" | ||
], | ||
"copyFiles": [ | ||
"text/LICENSE.txt", | ||
"text/README.txt" | ||
] | ||
} |
Empty file.
Empty file.
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 @@ | ||
void main() {} |
Empty file.
Empty file.