mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 06:09:52 -06:00
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>
6 lines
149 B
C
6 lines
149 B
C
extern int mylibA();
|
|
extern int mylibB();
|
|
extern int mylibC();
|
|
extern int mylibD();
|
|
int main() { return mylibA() + mylibB() + mylibC() + mylibD(); }
|