diff options
author | David Vierra <codewarrior@hawaii.rr.com> | 2018-02-09 10:26:26 -1000 |
---|---|---|
committer | David Vierra <codewarrior@hawaii.rr.com> | 2018-02-09 11:15:51 -1000 |
commit | 08be3b3aa2027b4be3086ac63c39e118cd57acc1 (patch) | |
tree | cdeb13801eff6ec25bf283a5893bb31495ed73ee /build.gradle | |
parent | a9c1cbd0288f630fc273a7a10b10a68dbcd3b134 (diff) | |
download | GT5-Unofficial-08be3b3aa2027b4be3086ac63c39e118cd57acc1.tar.gz GT5-Unofficial-08be3b3aa2027b4be3086ac63c39e118cd57acc1.tar.bz2 GT5-Unofficial-08be3b3aa2027b4be3086ac63c39e118cd57acc1.zip |
Use IDEA plugin in build script
Allows running the client from within IDEA without missing textures
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index 3ceeb07836..b3ca7c54b1 100644 --- a/build.gradle +++ b/build.gradle @@ -16,6 +16,10 @@ buildscript { } apply plugin: "forge" +apply plugin: "idea" + +idea { module { inheritOutputDirs = true } } + sourceSets { main { |