diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-10-06 14:42:34 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-06 14:42:34 -0700 |
| commit | bb48a94606ee1fa44078a811d411a24bfd4911da (patch) | |
| tree | f49dc3e52b5eeae8ff49e78f794189066d5372ae /toolsrc/vcpkglib | |
| parent | 1008d3dd7ad3e466f92eff215924e816f0165b61 (diff) | |
| parent | 016c53e231f353bdfa35f8e265b281e8d56031ed (diff) | |
| download | vcpkg-bb48a94606ee1fa44078a811d411a24bfd4911da.tar.gz vcpkg-bb48a94606ee1fa44078a811d411a24bfd4911da.zip | |
Merge pull request #1896 from mariatav/dev/mariatav/autocomplete
Autocomplete: Command to enable tab completion
Diffstat (limited to 'toolsrc/vcpkglib')
| -rw-r--r-- | toolsrc/vcpkglib/vcpkglib.vcxproj | 1 | ||||
| -rw-r--r-- | toolsrc/vcpkglib/vcpkglib.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/toolsrc/vcpkglib/vcpkglib.vcxproj b/toolsrc/vcpkglib/vcpkglib.vcxproj index 7c5537e15..3bb945e85 100644 --- a/toolsrc/vcpkglib/vcpkglib.vcxproj +++ b/toolsrc/vcpkglib/vcpkglib.vcxproj @@ -183,6 +183,7 @@ </ItemGroup> <ItemGroup> <ClCompile Include="..\src\BinaryParagraph.cpp" /> + <ClCompile Include="..\src\commands_autocomplete.cpp" /> <ClCompile Include="..\src\commands_ci.cpp" /> <ClCompile Include="..\src\commands_depends.cpp" /> <ClCompile Include="..\src\commands_env.cpp" /> diff --git a/toolsrc/vcpkglib/vcpkglib.vcxproj.filters b/toolsrc/vcpkglib/vcpkglib.vcxproj.filters index cc82198ee..918f83b0a 100644 --- a/toolsrc/vcpkglib/vcpkglib.vcxproj.filters +++ b/toolsrc/vcpkglib/vcpkglib.vcxproj.filters @@ -183,6 +183,9 @@ <ClCompile Include="..\src\vcpkg_GlobalState.cpp"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="..\src\commands_autocomplete.cpp"> + <Filter>Source Files</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\include\SourceParagraph.h"> |
