-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix warning * Update versions * Small update * update script * Update tool versions * Update samples
- Loading branch information
Showing
39 changed files
with
244 additions
and
243 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
Version: 4 | ||
Version: 5 | ||
Closures: { | ||
Root: { | ||
"C++": [ | ||
{ Name: "Samples.SimpleBuildExtension.Executable", Version: "./", Build: "Build0", Tool: "Tool0" } | ||
] | ||
'C++': { | ||
'Samples.SimpleBuildExtension.Executable': { Version: './', Build: 'Build0', Tool: 'Tool0' } | ||
} | ||
} | ||
Build0: { | ||
Wren: [ | ||
{ Name: "Samples.Cpp.BuildExtension.Extension", Version: "../Extension/" } | ||
{ Name: "Soup.Cpp", Version: "0.10.1" } | ||
] | ||
Wren: { | ||
'amples.Cpp.BuildExtension.Extension': { Version: '../Extension/' } | ||
'mwasplund|Soup.Cpp': { Version: '0.12.0' } | ||
} | ||
} | ||
Tool0: { | ||
"C++": [ | ||
{ Name: "copy", Version: "1.0.0" } | ||
{ Name: "mkdir", Version: "1.0.0" } | ||
] | ||
'C++': { | ||
'mwasplund|copy': { Version: '1.1.0' } | ||
'mwasplund|mkdir': { Version: '1.1.0' } | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Name: "Samples.SimpleBuildExtension.Executable" | ||
Language: "C++|0" | ||
Type: "Executable" | ||
Version: "1.0.0" | ||
Name: 'Samples.SimpleBuildExtension.Executable' | ||
Language: 'C++|0' | ||
Type: 'Executable' | ||
Version: '1.0.0' | ||
Source: [ | ||
"Main.cpp" | ||
'Main.cpp' | ||
] | ||
|
||
Dependencies: { | ||
Build: [ | ||
"../Extension/" | ||
'../Extension/' | ||
] | ||
} |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
Name: "Samples.Cpp.BuildExtension.Extension" | ||
Language: "Wren|0" | ||
Version: "1.0.0" | ||
Name: 'Samples.Cpp.BuildExtension.Extension' | ||
Language: 'Wren|0' | ||
Version: '1.0.0' | ||
Source: [ | ||
"CustomBuildTask.wren" | ||
'CustomBuildTask.wren' | ||
] | ||
|
||
Dependencies: { | ||
Runtime: [ | ||
"mwasplund|Soup.Build.Utils@0" | ||
'mwasplund|Soup.Build.Utils@0' | ||
] | ||
} |
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
Version: 5 | ||
Closures: { | ||
Root: { | ||
"C++": { | ||
"Samples.Cpp.DirectX": { Version: "../DirectX", Build: "Build0", Tool: "Tool0" } | ||
'C++': { | ||
'Samples.Cpp.DirectX': { Version: './', Build: 'Build0', Tool: 'Tool0' } | ||
} | ||
} | ||
Build0: { | ||
Wren: { | ||
"mwasplund|Soup.Cpp": { Version: "0.11.0" } | ||
'mwasplund|Soup.Cpp': { Version: '0.12.0' } | ||
} | ||
} | ||
Tool0: { | ||
"C++": { | ||
"mwasplund|copy": { Version: "1.0.0" } | ||
"mwasplund|mkdir": { Version: "1.0.0" } | ||
'C++': { | ||
'mwasplund|copy': { Version: '1.1.0' } | ||
'mwasplund|mkdir': { Version: '1.1.0' } | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
Name: "Samples.Cpp.DirectX" | ||
Language: "C++|0" | ||
Type: "Windows" | ||
Version: "1.0.0" | ||
Name: 'Samples.Cpp.DirectX' | ||
Language: 'C++|0' | ||
Type: 'Windows' | ||
Version: '1.0.0' | ||
Partitions: [ | ||
{ Source: "D3D12HelloTriangle.cpp", Imports: [ "DXSample.cpp", "DXSampleHelper.cpp", "Win32Application.cpp" ] } | ||
{ Source: "DXSample.cpp", Imports: [ "DXSampleHelper.cpp" ] } | ||
{ Source: "DXSampleHelper.cpp" } | ||
{ Source: "Win32Application.cpp", Imports: [ "DXSample.cpp", "DXSampleHelper.cpp" ] } | ||
{ Source: 'D3D12HelloTriangle.cpp', Imports: [ 'DXSample.cpp', 'DXSampleHelper.cpp', 'Win32Application.cpp' ] } | ||
{ Source: 'DXSample.cpp', Imports: [ 'DXSampleHelper.cpp' ] } | ||
{ Source: 'DXSampleHelper.cpp' } | ||
{ Source: 'Win32Application.cpp', Imports: [ 'DXSample.cpp', 'DXSampleHelper.cpp' ] } | ||
] | ||
Interface: "Interface.cpp" | ||
Interface: 'Interface.cpp' | ||
Source: [ | ||
"Main.cpp" | ||
'Main.cpp' | ||
] | ||
PlatformLibraries: [ | ||
"D3D12.lib" | ||
"D3DCompiler.lib" | ||
"DXGI.lib" | ||
'D3D12.lib' | ||
'D3DCompiler.lib' | ||
'DXGI.lib' | ||
] | ||
RuntimeDependencies: [ | ||
"Shaders.hlsl" | ||
'Shaders.hlsl' | ||
] |
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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
Version: 5 | ||
Closures: { | ||
Root: { | ||
"C++": { | ||
"Samples.Cpp.DynamicLibrary.Application": { Version: "../Application", Build: "Build0", Tool: "Tool0" } | ||
"Samples.Cpp.DynamicLibrary.Library": { Version: "../Library/", Build: "Build0", Tool: "Tool0" } | ||
'C++': { | ||
'Samples.Cpp.DynamicLibrary.Application': { Version: '../Application', Build: 'Build0', Tool: 'Tool0' } | ||
'Samples.Cpp.DynamicLibrary.Library': { Version: '../Library/', Build: 'Build0', Tool: 'Tool0' } | ||
} | ||
} | ||
Build0: { | ||
Wren: { | ||
"mwasplund|Soup.Cpp": { Version: "0.11.0" } | ||
'mwasplund|Soup.Cpp': { Version: '0.12.0' } | ||
} | ||
} | ||
Tool0: { | ||
"C++": { | ||
"mwasplund|copy": { Version: "1.0.0" } | ||
"mwasplund|mkdir": { Version: "1.0.0" } | ||
'C++': { | ||
'mwasplund|copy': { Version: '1.1.0' } | ||
'mwasplund|mkdir': { Version: '1.1.0' } | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Name: "Samples.Cpp.DynamicLibrary.Application" | ||
Language: "C++|0" | ||
Type: "Executable" | ||
Version: "1.0.0" | ||
Name: 'Samples.Cpp.DynamicLibrary.Application' | ||
Language: 'C++|0' | ||
Type: 'Executable' | ||
Version: '1.0.0' | ||
Source: [ | ||
"Main.cpp" | ||
'Main.cpp' | ||
] | ||
|
||
Dependencies: { | ||
Runtime: [ | ||
"../Library/" | ||
'../Library/' | ||
] | ||
} |
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
Name: "Samples.Cpp.DynamicLibrary.Library" | ||
Language: "C++|0" | ||
Version: "1.0.0" | ||
Type: "DynamicLibrary" | ||
Name: 'Samples.Cpp.DynamicLibrary.Library' | ||
Language: 'C++|0' | ||
Version: '1.0.0' | ||
Type: 'DynamicLibrary' | ||
Defines: [ | ||
"EXPORT_LIBRARY" | ||
'EXPORT_LIBRARY' | ||
] | ||
Source: [ | ||
"Library.cpp" | ||
'Library.cpp' | ||
] | ||
IncludePaths: [ | ||
"public/" | ||
'public/' | ||
] | ||
PublicHeaders: [ | ||
{ | ||
Root: "public/" | ||
Root: 'public/' | ||
Files: [ | ||
"Library.h" | ||
'Library.h' | ||
] | ||
} | ||
] |
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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
Version: 5 | ||
Closures: { | ||
Root: { | ||
"C++": { | ||
"Samples.Cpp.HeaderLibrary.Application": { Version: "../Application", Build: "Build0", Tool: "Tool0" } | ||
"Samples.Cpp.HeaderLibrary.Library": { Version: "../Library/", Build: "Build0", Tool: "Tool0" } | ||
'C++': { | ||
'Samples.Cpp.HeaderLibrary.Application': { Version: '../Application', Build: 'Build0', Tool: 'Tool0' } | ||
'Samples.Cpp.HeaderLibrary.Library': { Version: '../Library/', Build: 'Build0', Tool: 'Tool0' } | ||
} | ||
} | ||
Build0: { | ||
Wren: { | ||
"mwasplund|Soup.Cpp": { Version: "0.11.0" } | ||
'mwasplund|Soup.Cpp': { Version: '0.12.0' } | ||
} | ||
} | ||
Tool0: { | ||
"C++": { | ||
"mwasplund|copy": { Version: "1.0.0" } | ||
"mwasplund|mkdir": { Version: "1.0.0" } | ||
'C++': { | ||
'mwasplund|copy': { Version: '1.1.0' } | ||
'mwasplund|mkdir': { Version: '1.1.0' } | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Name: "Samples.Cpp.HeaderLibrary.Application" | ||
Language: "C++|0" | ||
Type: "Executable" | ||
Version: "1.0.0" | ||
Name: 'Samples.Cpp.HeaderLibrary.Application' | ||
Language: 'C++|0' | ||
Type: 'Executable' | ||
Version: '1.0.0' | ||
Source: [ | ||
"Main.cpp" | ||
'Main.cpp' | ||
] | ||
|
||
Dependencies: { | ||
Runtime: [ | ||
"../Library/" | ||
'../Library/' | ||
] | ||
} |
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
Name: "Samples.Cpp.HeaderLibrary.Library" | ||
Language: "C++|0" | ||
Version: "1.0.0" | ||
Name: 'Samples.Cpp.HeaderLibrary.Library' | ||
Language: 'C++|0' | ||
Version: '1.0.0' | ||
IncludePaths: [ | ||
"public/" | ||
'public/' | ||
] | ||
PublicHeaders: [ | ||
{ | ||
Root: "./" | ||
Root: './' | ||
Files: [ | ||
"Library.h" | ||
'Library.h' | ||
] | ||
} | ||
] |
14 changes: 7 additions & 7 deletions
14
Samples/Cpp/ModuleDynamicLibrary/Application/PackageLock.sml
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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
Version: 5 | ||
Closures: { | ||
Root: { | ||
"C++": { | ||
"Samples.Cpp.ModuleDynamicLibrary.Application": { Version: "../Application", Build: "Build0", Tool: "Tool0" } | ||
"Samples.Cpp.ModuleDynamicLibrary.Library": { Version: "../Library/", Build: "Build0", Tool: "Tool0" } | ||
'C++': { | ||
'Samples.Cpp.ModuleDynamicLibrary.Application': { Version: '../Application', Build: 'Build0', Tool: 'Tool0' } | ||
'Samples.Cpp.ModuleDynamicLibrary.Library': { Version: '../Library/', Build: 'Build0', Tool: 'Tool0' } | ||
} | ||
} | ||
Build0: { | ||
Wren: { | ||
"mwasplund|Soup.Cpp": { Version: "0.11.0" } | ||
'mwasplund|Soup.Cpp': { Version: '0.12.0' } | ||
} | ||
} | ||
Tool0: { | ||
"C++": { | ||
"mwasplund|copy": { Version: "1.0.0" } | ||
"mwasplund|mkdir": { Version: "1.0.0" } | ||
'C++': { | ||
'mwasplund|copy': { Version: '1.1.0' } | ||
'mwasplund|mkdir': { Version: '1.1.0' } | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Name: "Samples.Cpp.ModuleDynamicLibrary.Application" | ||
Language: "C++|0" | ||
Type: "Executable" | ||
Version: "1.0.0" | ||
Name: 'Samples.Cpp.ModuleDynamicLibrary.Application' | ||
Language: 'C++|0' | ||
Type: 'Executable' | ||
Version: '1.0.0' | ||
Source: [ | ||
"Main.cpp" | ||
'Main.cpp' | ||
] | ||
|
||
Dependencies: { | ||
Runtime: [ | ||
"../Library/" | ||
'../Library/' | ||
] | ||
} |
Oops, something went wrong.