-
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.
- Loading branch information
unknown
committed
Sep 10, 2018
1 parent
04537e9
commit 927f39f
Showing
4 changed files
with
34 additions
and
19 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,39 +1,47 @@ | ||
{ | ||
"build_systems": [ | ||
"build_systems": | ||
[ | ||
{ | ||
"name": "MS Build", | ||
"cmd": ["C:\\Program Files (x86)\\MSBuild\\14.0\\Bin\\MSBuild.exe", "MSBuildMakefile.xml"], | ||
"encoding": "gb2312" | ||
"cmd": | ||
[ | ||
"C:\\Program Files (x86)\\MSBuild\\14.0\\Bin\\MSBuild.exe", | ||
"MSBuildMakefile.xml" | ||
], | ||
"encoding": "gb2312", | ||
"name": "MS Build" | ||
} | ||
], | ||
"folders": | ||
[ | ||
{ | ||
"path": "." | ||
}, | ||
{ | ||
"path": "D:\\Applications\\msys64\\mingw64\\include\\boost\\program_options" | ||
} | ||
], | ||
"settings": | ||
"settings": | ||
{ | ||
"env_file": | ||
{ | ||
"Windows": "%HOME%/Documents/myEnv.bat", | ||
"Darwin": "~/Documents/myEnv.sh", | ||
"Linux": "~/Documents/myEnv.sh" | ||
}, | ||
"env": | ||
{ | ||
"Windows": | ||
"Darwin": | ||
{ | ||
"PATH": "%PATH%;C:\\Program Files (x86)\\MSBuild\\14.0\\Bin" | ||
"PATH": "$PATH:~/Documents/MyTool" | ||
}, | ||
"Darwin": | ||
"Linux": | ||
{ | ||
"PATH": "$PATH:~/Documents/MyTool" | ||
}, | ||
"Linux": | ||
"Windows": | ||
{ | ||
"PATH": "$PATH:~/Documents/MyTool" | ||
"PATH": "%PATH%;C:\\Program Files (x86)\\MSBuild\\14.0\\Bin" | ||
} | ||
}, | ||
"env_file": | ||
{ | ||
"Darwin": "~/Documents/myEnv.sh", | ||
"Linux": "~/Documents/myEnv.sh", | ||
"Windows": "%HOME%/Documents/myEnv.bat" | ||
} | ||
} | ||
} |
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,13 +1,17 @@ | ||
#include <iostream> | ||
#include <exception> | ||
#include <boost/program_options/cmdline.hpp> | ||
#include <boost/program_options/options_description.hpp> | ||
|
||
struct NotImplementedError: public std::exception | ||
{ | ||
}; | ||
|
||
|
||
int main(int argc, char const *argv[]) | ||
{ | ||
using options_description = boost::program_options::options_description; | ||
// options_description desc("Allowed options:"); | ||
std::cout << "Hello world!" << std::endl; | ||
return 0; | ||
} |