diff options
author | Brad King <brad.king@kitware.com> | 2019-10-17 14:41:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-10-17 14:41:43 (GMT) |
commit | 6dedb9742094470196698a5009441e3860e61f2a (patch) | |
tree | 722cf5b830ffe47f3d76cd2e9ec00b57d78ff0f0 /Tests/BuildDepends/Project/zot.cxx | |
parent | 7aab792716bb647aac2b5802e6e21148471a0c79 (diff) | |
parent | 797689ab35c6f1edc37b120804e348b03ce7b161 (diff) | |
download | CMake-6dedb9742094470196698a5009441e3860e61f2a.zip CMake-6dedb9742094470196698a5009441e3860e61f2a.tar.gz CMake-6dedb9742094470196698a5009441e3860e61f2a.tar.bz2 |
Merge branch 'pch-makefile-depends' into release-3.16
Merge-request: !3928
Diffstat (limited to 'Tests/BuildDepends/Project/zot.cxx')
-rw-r--r-- | Tests/BuildDepends/Project/zot.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Tests/BuildDepends/Project/zot.cxx b/Tests/BuildDepends/Project/zot.cxx index faee7d3..2d08c4b 100644 --- a/Tests/BuildDepends/Project/zot.cxx +++ b/Tests/BuildDepends/Project/zot.cxx @@ -4,11 +4,12 @@ const char* zot_macro_dir_f(); const char* zot_macro_tgt_f(); +const char* zot_pch_f(); int main() { - printf("[%s] [%s] [%s] [%s]\n", zot, zot_custom, zot_macro_dir_f(), - zot_macro_tgt_f()); + printf("[%s] [%s] [%s] [%s] [%s]\n", zot, zot_custom, zot_macro_dir_f(), + zot_macro_tgt_f(), zot_pch_f()); fflush(stdout); return 0; } |