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/cmBorlandMakefileGenerator.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/cmBorlandMakefileGenerator.cxx')
-rw-r--r-- | Source/cmBorlandMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmBorlandMakefileGenerator.cxx b/Source/cmBorlandMakefileGenerator.cxx index 680e534..e467cdd 100644 --- a/Source/cmBorlandMakefileGenerator.cxx +++ b/Source/cmBorlandMakefileGenerator.cxx @@ -200,7 +200,7 @@ OutputBuildObjectFromSource(std::ostream& fout, } else if (ext == "rc") { - compileCommand = "$(RC) -o\""; + compileCommand = "$(RC) $(INCLUDE_FLAGS) -o\""; compileCommand += objectFile; compileCommand += "\" "; compileCommand += |