-
Notifications
You must be signed in to change notification settings - Fork 15
Add support for the autotools build with vscode. #336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+8,364
−113
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
7a918cc
First hacked attempt at vscode support.
jgallagher59701 7e0d726
Added a named configuration to .vscode/settings.json
jgallagher59701 9f2383f
Merge branch 'master' into jhrg/vscode-1
jgallagher59701 dfe36f0
Fixed issues in launch.json. I still had to make the dSYM lib by hand
jgallagher59701 a7a6980
CMakePresets.json fixes
jgallagher59701 afb2ec6
First pass: reorganize .gitignore
jgallagher59701 8b1aa68
The four compiler warnings from the flex scanner code are now suppres…
jgallagher59701 a02fe61
/Users/jhrg --> ~ in PATH settings. This will need more work, but it'…
jgallagher59701 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 characters
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 characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| { | ||
| "version": "0.2.0", | ||
| "configurations": [ | ||
| { | ||
| "name": "Debug getdap4", | ||
| "type": "cppdbg", | ||
| "request": "launch", | ||
| "program": "${workspaceFolder}/.libs/getdap4", | ||
| "args": ["-d", "http://test.opendap.org/opendap/data/nc/fnoc1.nc"], | ||
| "cwd": "${workspaceFolder}", | ||
| "environment": [ | ||
| { | ||
| "name": "DYLD_LIBRARY_PATH", | ||
| "value": "${workspaceFolder}/.libs:${env:DYLD_LIBRARY_PATH}" | ||
| }, | ||
| { | ||
| "name": "PATH", | ||
| "value": "~/opendap/hyrax/build/bin:~/src/opendap/hyrax/build/deps/bin:${env:PATH}" | ||
| } | ||
| ], | ||
| "MIMode": "lldb", | ||
| "setupCommands": [ | ||
| { | ||
| "description": "Allow stepping into all frames", | ||
| "text": "settings set target.process.thread.step-avoid-regexp ^$", | ||
| "ignoreFailures": true | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } |
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 characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| { | ||
| "C_Cpp.default.configurationProvider": "ms-vscode.makefile-tools", | ||
| "C_Cpp.default.compileCommands": "${workspaceFolder}/compile_commands.json", | ||
| "C_Cpp.default.cppStandard": "c++14", | ||
| "C_Cpp.default.intelliSenseMode": "macos-clang-arm64", | ||
| "terminal.integrated.env.osx": { | ||
| "prefix": "~/src/opendap/hyrax/build", | ||
| "PATH": "~/src/opendap//hyrax/build/bin:/Users/jhrg/src/opendap/hyrax/build/deps/bin:${env:PATH}" | ||
| }, | ||
| "makefile.configurations": [ | ||
| { | ||
| "makeArgs": [ | ||
| "-j" | ||
| ], | ||
| "name": "all" | ||
| }, | ||
| { | ||
| "makeArgs": [ | ||
| "-j", "check" | ||
| ], | ||
| "name": "check" | ||
| } | ||
|
|
||
| ] | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we still want this in here? I guess we probably do, given that changes to the new .vscode files will still be tracked.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe, I don't know. This stuff seems different somehow. This might evolve - it might be that some of the files should be in version control. Others not.