diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-05-11 14:53:17 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-05-11 14:53:17 (GMT) |
commit | 639f1fa2392345be8afbdb1d0866d342d5923bbf (patch) | |
tree | 4e594126688fb699d195dfec984ff4909b910b0b /Source/cmMakefile.h | |
parent | 4139f15de65ec1d1670cceb95b4c22b52f5448c3 (diff) | |
download | CMake-639f1fa2392345be8afbdb1d0866d342d5923bbf.zip CMake-639f1fa2392345be8afbdb1d0866d342d5923bbf.tar.gz CMake-639f1fa2392345be8afbdb1d0866d342d5923bbf.tar.bz2 |
added registry entry support and windows app support
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 6692c68..35c7cb0 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -133,7 +133,10 @@ public: /** * Add an executable to the build. */ - void AddExecutable(const char *exename, const std::vector<std::string> &srcs); + void AddExecutable(const char *exename, + const std::vector<std::string> &srcs); + void AddExecutable(const char *exename, + const std::vector<std::string> &srcs, bool win32); /** * Add a utility to the build. A utiltity target is |