This repository has been archived by the owner on Sep 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Constructing and filling the unbuilt folder for compilation by CMake
- Loading branch information
1 parent
215db8d
commit 8e9b229
Showing
3,752 changed files
with
847,275 additions
and
9 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"showLineNumber": true, | ||
"alwaysUpdateLinks": true | ||
"alwaysUpdateLinks": true, | ||
"attachmentFolderPath": "Built" | ||
} |
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,5 @@ | ||
## CMake | ||
--- | ||
A C++ compiler and linker | ||
|
||
[CMake Tutorial](http://www.cmake.org/cmake/help/cmake_tutorial.html) |
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,7 +1,7 @@ | ||
## Build Requirements | ||
--- | ||
#### Programs | ||
1. CMake | ||
1. [[CMake]] | ||
2. Visual Studio | ||
|
||
#### Libraries | ||
|
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,32 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
<LocalDebuggerEnvironment></LocalDebuggerEnvironment> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerCommand></LocalDebuggerCommand> | ||
<LocalDebuggerCommandArguments></LocalDebuggerCommandArguments> | ||
<LocalDebuggerWorkingDirectory>C:/Users/Tom/Documents/GitHub/Flight-Sim/Unbuilt/src/</LocalDebuggerWorkingDirectory> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
<LocalDebuggerEnvironment></LocalDebuggerEnvironment> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerCommand></LocalDebuggerCommand> | ||
<LocalDebuggerCommandArguments></LocalDebuggerCommandArguments> | ||
<LocalDebuggerWorkingDirectory>C:/Users/Tom/Documents/GitHub/Flight-Sim/Unbuilt/src/</LocalDebuggerWorkingDirectory> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'"> | ||
<LocalDebuggerEnvironment></LocalDebuggerEnvironment> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerCommand></LocalDebuggerCommand> | ||
<LocalDebuggerCommandArguments></LocalDebuggerCommandArguments> | ||
<LocalDebuggerWorkingDirectory>C:/Users/Tom/Documents/GitHub/Flight-Sim/Unbuilt/src/</LocalDebuggerWorkingDirectory> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'"> | ||
<LocalDebuggerEnvironment></LocalDebuggerEnvironment> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerCommand></LocalDebuggerCommand> | ||
<LocalDebuggerCommandArguments></LocalDebuggerCommandArguments> | ||
<LocalDebuggerWorkingDirectory>C:/Users/Tom/Documents/GitHub/Flight-Sim/Unbuilt/src/</LocalDebuggerWorkingDirectory> | ||
</PropertyGroup> | ||
|
||
</Project> |
Oops, something went wrong.