-
-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix how entry point to package is computed with
path
provided in pr…
…oject file (#3850) * fix how entry point to package is computed with `path` provided in project file
- Loading branch information
1 parent
77620a9
commit 9210a1d
Showing
9 changed files
with
63 additions
and
13 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
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,7 @@ | ||
module ProjectPath | ||
|
||
using ProjectPathDep | ||
|
||
greet() = print("Hello World!") | ||
|
||
end # module ProjectPath |
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,10 @@ | ||
name = "ProjectPath" | ||
uuid = "32833bde-7fc1-4d28-8365-9d01e1bcbc1b" | ||
entryfile = "CustomPath.jl" | ||
version = "0.1.0" | ||
|
||
[deps] | ||
ProjectPathDep = "f18633fc-8799-43ff-aa06-99ed830dc572" | ||
|
||
[sources] | ||
ProjectPathDep = {path = "ProjectPathDep"} |
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 @@ | ||
module ProjectPathDep | ||
|
||
greet() = print("Hello World!") | ||
|
||
end # module ProjectPathDep |
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 @@ | ||
name = "ProjectPathDep" | ||
uuid = "f18633fc-8799-43ff-aa06-99ed830dc572" | ||
version = "0.1.0" | ||
entryfile = "CustomPath.jl" |