Skip to content

Commit 5ad9050

Browse files
author
RogueMacro
committed
switch Core and CLI projects
1 parent eca622f commit 5ad9050

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+48
-31
lines changed

BeefProj.toml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
FileVersion = 1
2-
Dependencies = {"Serialize-0.1.5" = "*", corlib = "*", "Toml-0.1.5" = "*", Grill = "*", SyncErr = "*", "BuildTools-0.2.4" = "*", Click = "*"}
32

4-
[Project]
5-
Name = "Grill.CLI"
6-
StartupObject = "Grill.CLI.Program"
3+
[Dependencies]
4+
corlib = "*"
5+
"Serialize-0.1.6" = "*"
6+
"Toml-0.1.6" = "*"
7+
"BuildTools-0.2.4" = "*"
8+
SyncErr = "*"
9+
Iterators = "*"
710

8-
[Configs.Debug.Win64]
9-
PostBuildCmds = ["CopyFilesIfNewer(\"$(ProjectDir)/resources\",\"$(TargetDir)\")"]
10-
DebugCommandArguments = "make"
11-
DebugWorkingDirectory = "c:\\dev\\Beef\\Grill-Change"
11+
[Project]
12+
Name = "Grill"
13+
TargetType = "BeefLib"

Package.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1+
Serialize = ["0.1.6"]
2+
Toml = ["0.1.6"]
13
BuildTools = ["0.2.4"]
2-
Toml = ["0.1.5"]
3-
Serialize = ["0.1.5"]

Package.toml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
[Package]
2-
Name = "Grill.CLI"
2+
Name = "Grill"
33
Version = "0.1.0"
44
Description = "A package manager for the Beef Programming Language"
55

6+
[Workspace]
7+
Members = ["projects/CLI"]
8+
StartupProject = "Grill.CLI"
9+
610
[Dependencies]
7-
Grill = { Path = "projects/Core" }
8-
Click = { Path = "projects/Click" }
9-
SyncErr = { Path = "projects/SyncErr" }
10-
BuildTools = "0.2.4"
1111
Serialize = "0.1.6"
1212
Toml = "0.1.6"
13+
BuildTools = "0.2.4"
14+
SyncErr = { Path = "projects/SyncErr" }
15+
Iterators = { Path = "projects/Iterators" }

projects/CLI/BeefProj.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FileVersion = 1
2+
3+
[Dependencies]
4+
corlib = "*"
5+
Grill = "*"
6+
Click = "*"
7+
SyncErr = "*"
8+
9+
[Project]
10+
Name = "Grill.CLI"
11+
TargetType = "BeefConsoleApplication"
12+
StartupObject = "Grill.CLI.Program"
13+
14+
[Configs]
15+
16+
[Configs.Debug]
17+
18+
[Configs.Debug.Win64]
19+
PostBuildCmds = ["CopyFilesIfNewer(\"$(WorkspaceDir)/resources\",\"$(TargetDir)\")"]

projects/CLI/Package.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[Package]
2+
Name = "Grill.CLI"
3+
Version = "0.1.0"
4+
Description = "Command-line interface of Grill"
5+
6+
[Dependencies]
7+
Grill = { Path = "../.." }
8+
Click = { Path = "../Click" }
9+
SyncErr = { Path = "../SyncErr" }

0 commit comments

Comments
 (0)