-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
124 additions
and
66 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,10 +1,31 @@ | ||
|
||
#ifdef __linux__ | ||
|
||
//#pragma dir "/usr/lib/gcc/x86_64-linux-gnu/11/include" | ||
//#pragma dir "/usr/local/include" | ||
//#pragma dir "/usr/include/x86_64-linux-gnu" | ||
//#pragma dir "/usr/include" | ||
/* | ||
To find the include directories used my GCC type: | ||
echo | gcc -E -Wp,-v - | ||
*/ | ||
#pragma dir "/usr/lib/gcc/x86_64-linux-gnu/11/include" | ||
#pragma dir "/usr/local/include" | ||
#pragma dir "/usr/include/x86_64-linux-gnu" | ||
#pragma dir "/usr/include" | ||
|
||
#endif | ||
|
||
#ifdef _WIN32 | ||
/* | ||
To find the include directories used my MSVC, | ||
open Visual Studio Developer Commmand prompt and type: | ||
echo %INCLUDE%. | ||
Running Cake inside mscv command prompt uses %INCLUDE% automatically. | ||
*/ | ||
#pragma dir "C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.38.33130/include" | ||
#pragma dir "C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.38.33130/ATLMFC/include" | ||
#pragma dir "C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Auxiliary/VS/include" | ||
#pragma dir "C:/Program Files (x86)/Windows Kits/10/include/10.0.22000.0/ucrt" | ||
#pragma dir "C:/Program Files (x86)/Windows Kits/10/include/10.0.22000.0/um" | ||
#pragma dir "C:/Program Files (x86)/Windows Kits/10/include/10.0.22000.0/shared" | ||
#pragma dir "C:/Program Files (x86)/Windows Kits/10/include/10.0.22000.0/winrt" | ||
#pragma dir "C:/Program Files (x86)/Windows Kits/10/include/10.0.22000.0/cppwinrt" | ||
#pragma dir "C:/Program Files (x86)/Windows Kits/NETFXSDK/4.8/include/um" | ||
|
||
#endif |
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