Skip to content

Commit

Permalink
Treat .dll files being passed on the command line to crunchMake as …
Browse files Browse the repository at this point in the history
…objects
  • Loading branch information
dragonmux committed Jan 1, 2024
1 parent 15cbf8f commit a23c0c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crunchMake/crunchMake.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ namespace crunch
".c"_sv, ".cpp"_sv, ".cc"_sv, ".cxx"_sv, ".i"_sv, ".s"_sv, ".S"_sv, ".sx"_sv, ".asm"_sv
})};
constexpr static auto cxxExts{substrate::make_array<stringView>({".cpp"_sv, ".cc"_sv, ".cxx"_sv})};
constexpr static auto objExts{substrate::make_array<stringView>({".o"_sv, ".obj"_sv, ".a"_sv, ".so"_sv})};
constexpr static auto objExts{substrate::make_array<stringView>({
".o"_sv, ".obj"_sv, ".a"_sv, ".so"_sv, ".dll"_sv
})};

std::string inclDirFlags{}, libDirFlags{}, objs{}, libs{};
bool silent, quiet, pthread, codeCoverage, debugBuild;
Expand Down

0 comments on commit a23c0c8

Please sign in to comment.