diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-08-28 18:33:12 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-08-28 18:33:12 (GMT) |
commit | 6046060714cf1c9098a843e65151f3ff27a40a7d (patch) | |
tree | 6f49e545b8b915be935bb519a74535da47d8ab03 /Source/cmNMakeMakefileGenerator.cxx | |
parent | 6f310818e1bbcfd7a8f0b8951052a45671d3b18c (diff) | |
download | CMake-6046060714cf1c9098a843e65151f3ff27a40a7d.zip CMake-6046060714cf1c9098a843e65151f3ff27a40a7d.tar.gz CMake-6046060714cf1c9098a843e65151f3ff27a40a7d.tar.bz2 |
ENH: add include paths to rc program for resource generation
Diffstat (limited to 'Source/cmNMakeMakefileGenerator.cxx')
-rw-r--r-- | Source/cmNMakeMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmNMakeMakefileGenerator.cxx b/Source/cmNMakeMakefileGenerator.cxx index 0e0b8ea..0be634b 100644 --- a/Source/cmNMakeMakefileGenerator.cxx +++ b/Source/cmNMakeMakefileGenerator.cxx @@ -360,7 +360,7 @@ OutputBuildObjectFromSource(std::ostream& fout, } else if (ext == "rc") { - compileCommand = "$(RC) /fo\""; + compileCommand = "$(RC) $(INCLUDE_FLAGS) /fo\""; compileCommand += objectFile; compileCommand += "\" "; compileCommand += |