diff options
author | Yuchen Deng <loaden@gmail.com> | 2012-09-25 09:30:42 +0800 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-09-25 15:23:35 -0400 |
commit | 3f60dbf1484575f4c28a15c89e1af071648c8f2d (patch) | |
tree | 2ff89c5574c9515a4f1a61d210dfbcc7b020af56 /Tests/PDBDirectoryAndName/mylibC.c | |
parent | d550801a3df96b991caf918435025aa233130bb4 (diff) | |
download | cmake-3f60dbf1484575f4c28a15c89e1af071648c8f2d.tar.gz |
Add PDB_OUTPUT_DIRECTORY and PDB_NAME target properties (#10830)
This enables changing the name and output folder of the debug symbol
files produced by MS compilers.
Inspired-by: Thomas Bernard <thomas.bernard@ipetronik.com>
Diffstat (limited to 'Tests/PDBDirectoryAndName/mylibC.c')
-rw-r--r-- | Tests/PDBDirectoryAndName/mylibC.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/PDBDirectoryAndName/mylibC.c b/Tests/PDBDirectoryAndName/mylibC.c new file mode 100644 index 0000000000..adf7c70988 --- /dev/null +++ b/Tests/PDBDirectoryAndName/mylibC.c @@ -0,0 +1 @@ +__declspec(dllexport) int mylibC() { return 1; } |