diff options
author | Brad King <brad.king@kitware.com> | 2013-06-24 12:46:34 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-06-24 12:46:34 (GMT) |
commit | 6d7b124f7b925099115dee6cf1b4194e3f946786 (patch) | |
tree | 6046b8bb03a6b2e16ed5296e5a95d2be5f04bb24 /Source | |
parent | 37e34be0f5818ed3045d99c9a75c3ba5a2fe1486 (diff) | |
parent | 8a3b5bede8c8fc16b7b7b25d7e665e8936de04ee (diff) | |
download | CMake-6d7b124f7b925099115dee6cf1b4194e3f946786.zip CMake-6d7b124f7b925099115dee6cf1b4194e3f946786.tar.gz CMake-6d7b124f7b925099115dee6cf1b4194e3f946786.tar.bz2 |
Merge topic 'find-targets-in-INTERFACE_COMPILE_OPTIONS'
8a3b5be Find targets in INTERFACE_COMPILE_OPTIONS when exporting for try_compile.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmExportTryCompileFileGenerator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmExportTryCompileFileGenerator.cxx b/Source/cmExportTryCompileFileGenerator.cxx index 948508b..29406dc 100644 --- a/Source/cmExportTryCompileFileGenerator.cxx +++ b/Source/cmExportTryCompileFileGenerator.cxx @@ -33,6 +33,7 @@ bool cmExportTryCompileFileGenerator::GenerateMainFile(std::ostream& os) this->FindTargets("INTERFACE_INCLUDE_DIRECTORIES", te, emittedDeps); this->FindTargets("INTERFACE_COMPILE_DEFINITIONS", te, emittedDeps); + this->FindTargets("INTERFACE_COMPILE_OPTIONS", te, emittedDeps); this->PopulateProperties(te, properties, emittedDeps); |