diff options
author | Nao Pross <naopross@thearcway.org> | 2018-02-10 19:06:21 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2018-02-10 19:06:21 +0100 |
commit | 21b40a8dcc55b3ec365b4a33f08310957155b50d (patch) | |
tree | fe839a00556d2120f52a115cdd3efa54f4de32fc /build.gradle | |
parent | Implement actor, create player (diff) | |
download | Subconscious-old-21b40a8dcc55b3ec365b4a33f08310957155b50d.tar.gz Subconscious-old-21b40a8dcc55b3ec365b4a33f08310957155b50d.zip |
Threaded double buffered rendering
Other changes:
- Tabs < Spaces
- Add jar manifest configuration to gradle.build
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index 7a06cf2..b57ab80 100644 --- a/build.gradle +++ b/build.gradle @@ -2,3 +2,11 @@ apply plugin: 'java' apply plugin: 'application' mainClassName = 'Subconscious' +jar { + manifest { + attributes( + 'Class-Path': configurations.compile.collect { it.getName() }.join(' '), + 'Main-Class': 'Subconscious' + ) + } +} |