CMake/Tests/PDBDirectoryAndName/myexe2.c
Yuchen Deng 3f60dbf148 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>
2012-09-25 15:23:35 -04:00

4 lines
85 B
C

extern int mylibA();
extern int mylibD();
int main() { return mylibA() + mylibD(); }