You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
421 B
C
17 lines
421 B
C
#pragma once
|
|
|
|
#if defined(_DEBUG)
|
|
|
|
#pragma comment(lib,"dfnD.lib")
|
|
#pragma message("Automatically linking with dfnD.lib")
|
|
#pragma comment(lib,"SerialD.lib")
|
|
#pragma message("Automatically linking with SerialD.lib")
|
|
#else
|
|
|
|
#pragma comment(lib,"dfn.lib")
|
|
#pragma message("Automatically linking with dfn.lib")
|
|
#pragma comment(lib,"Serial.lib")
|
|
#pragma message("Automatically linking with Serial.lib")
|
|
#endif
|
|
|