diff options
author | Patrick Gansterer <paroga@paroga.com> | 2013-08-05 19:23:13 (GMT) |
---|---|---|
committer | Patrick Gansterer <paroga@paroga.com> | 2013-08-05 19:24:00 (GMT) |
commit | 34969cf15eca97d8b24764ae725d1125b6e820be (patch) | |
tree | 6c4df3114273a45e9bb5b196418b8c61c306362e /Source/cmLocalVisualStudio7Generator.h | |
parent | 5e0252ce68d9752284450ac805138afa0792c799 (diff) | |
download | CMake-34969cf15eca97d8b24764ae725d1125b6e820be.zip CMake-34969cf15eca97d8b24764ae725d1125b6e820be.tar.gz CMake-34969cf15eca97d8b24764ae725d1125b6e820be.tar.bz2 |
Fix setting of the entry point symbol for Windows CE (#14088)
Set the EntryPointSymbol only when it has not been set before
and use the correct symbol depending on the usage of Unicode.
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.h')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.h b/Source/cmLocalVisualStudio7Generator.h index d9e2ef0..92e4d3c 100644 --- a/Source/cmLocalVisualStudio7Generator.h +++ b/Source/cmLocalVisualStudio7Generator.h @@ -90,7 +90,7 @@ private: void OutputTargetRules(std::ostream& fout, const char* configName, cmTarget &target, const char *libName); void OutputBuildTool(std::ostream& fout, const char* configName, - cmTarget& t, bool debug); + cmTarget& t, const Options& targetOptions); void OutputLibraryDirectories(std::ostream& fout, std::vector<std::string> const& dirs); void WriteProjectSCC(std::ostream& fout, cmTarget& target); |