mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
461efa7b51
This MR may help to solve issues #19757 and #18008 Fixes: #19965
13 lines
112 B
C++
13 lines
112 B
C++
|
|
#if defined(_WIN32)
|
|
__declspec(dllimport)
|
|
#endif
|
|
void func_cxx();
|
|
|
|
int main()
|
|
{
|
|
func_cxx();
|
|
|
|
return 0;
|
|
}
|