Skip to content

Commit

Permalink
Add trailing comma.
Browse files Browse the repository at this point in the history
  • Loading branch information
BillyONeal committed Jan 16, 2025
1 parent cf39054 commit 87b86c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/vcpkg/commands.build.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,9 @@ namespace vcpkg
paths.packages() / fmt::format("{}_{}", FileDetectCompiler, triplet.canonical_name())},
// The detect_compiler "port" doesn't depend on the host triplet, so always natively compile
{CMakeVariableHostTriplet, triplet.canonical_name()},
{CMakeVariableCompilerCacheFile, paths.installed().compiler_hash_cache_file()}};
{CMakeVariableCompilerCacheFile, paths.installed().compiler_hash_cache_file()},
};

get_generic_cmake_build_args(paths, triplet, toolset, cmake_args);

auto cmd = vcpkg::make_cmake_cmd(paths, paths.ports_cmake, std::move(cmake_args));
Expand Down

0 comments on commit 87b86c3

Please sign in to comment.