Last active
May 1, 2021 02:22
-
-
Save mcandre/5ceb67ad44f6b974d33bcddedcb16e89 to your computer and use it in GitHub Desktop.
Revisions
-
Andrew revised this gist
May 1, 2021 . 1 changed file with 9 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -13,8 +13,15 @@ PS C:\> choco install --force visualstudio2019-workload-nativedesktop --package- # cmake Integration Remove any cmake temporary files. ## Re-initialize cmake (MSVC) ```console PS C:\> cmake . ``` ## Re-initialize cmake (clang) ```console PS C:\> cmake -T ClangCL . -
Andrew renamed this gist
May 1, 2021 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,15 +1,15 @@ # Windows Install MSVC and clang 1. Install [Chocolatey](https://chocolatey.org/). 2. Launch a PowerShell terminal in administrator mode. 3. Install `visualstudio2019community`. 4. Install the Visual Studio 2019 native C++ Desktop workload with the optional MSVC and clang components included: ```console PS C:\> choco install --force visualstudio2019-workload-nativedesktop --package-parameters "--includeOptional" ``` 5. Launch Visual Studio Installer -> Visual Studio 2019 -> Manage -> Uncheck IncrediBuild. Confirm uninstallation of IncrediBuild. 6. Reboot (Or sign out then sign back in). # cmake Integration -
Andrew revised this gist
Apr 26, 2021 . 1 changed file with 11 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # Windows Install clang 1. Install [Chocolatey](https://chocolatey.org/). 2. Launch a PowerShell terminal in administrator mode. @@ -9,4 +9,13 @@ PS C:\> choco install --force visualstudio2019-workload-nativedesktop --package-parameters "--includeOptional" ``` 5. Reboot (Or sign out then sign back in). # cmake Integration 1. Remove any cmake temporary files. 2. Re-initialize cmake: ```console PS C:\> cmake -T ClangCL . ``` -
Andrew renamed this gist
Apr 26, 2021 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Andrew created this gist
Apr 26, 2021 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ # Windows Install Clang 1. Install [Chocolatey](https://chocolatey.org/). 2. Launch a PowerShell terminal in administrator mode. 3. Install `visualstudio2019community`. 4. Install the Visual Studio 2019 native C++ Desktop workload with the optional Clang component included: ```console PS C:\> choco install --force visualstudio2019-workload-nativedesktop --package-parameters "--includeOptional" ``` 5. Reboot (Or sign out then sign back in).