-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IDEA: Set correct module dependencies
Currently, only module dependencies of cross-platform modules are set when generating an IDEA project. Also include the module dependencies from platform-specific modules. This fixes a regression introduced in 51a27f5.
- Loading branch information
Showing
3 changed files
with
55 additions
and
28 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,11 @@ | ||
[project] | ||
scalaVersion = "2.12.8" | ||
|
||
[module.core.jvm] | ||
root = "jvm" | ||
sources = ["jvm/src/"] | ||
|
||
[module.example.jvm] | ||
moduleDeps = ["core"] | ||
root = "example" | ||
sources = ["example/src/"] |