diff options
author | Brad King <brad.king@kitware.com> | 2007-05-28 15:00:26 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-05-28 15:00:26 (GMT) |
commit | 27a0677d3e1caffd16232086e86ed1657731723d (patch) | |
tree | 3f0546179b06c51cfddb8e4f57fba775b27c4aed /Source/cmGlobalVisualStudio8Generator.cxx | |
parent | 3f2dd9bc54d1dfc47fcf8e22979e409ad50e875a (diff) | |
download | CMake-27a0677d3e1caffd16232086e86ed1657731723d.zip CMake-27a0677d3e1caffd16232086e86ed1657731723d.tar.gz CMake-27a0677d3e1caffd16232086e86ed1657731723d.tar.bz2 |
COMP: Fix build for windows-only generators after change to GetSourceFiles signature.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index 2c2325b..9eafd92 100644 --- a/Source/cmGlobalVisualStudio8Generator.cxx +++ b/Source/cmGlobalVisualStudio8Generator.cxx @@ -153,7 +153,7 @@ void cmGlobalVisualStudio8Generator::Generate() if(cmSourceFile* file = mf->GetSource(CMAKE_CHECK_BUILD_SYSTEM_TARGET ".vcproj.cmake.rule")) { - tgt->GetSourceFiles().push_back(file); + tgt->AddSourceFile(file); } else { |