From: Timo Kreuzer Date: Thu, 2 Oct 2014 07:58:18 +0000 (+0000) Subject: [DLLEXPORT_TEST] X-Git-Tag: backups/0.3.17@66124~298 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=279d5c7c786bc6660ca84a374ff6e1094dabe876 [DLLEXPORT_TEST] Make it a DLL, not a static lib. Noticed by Thomas. svn path=/trunk/; revision=64450 --- diff --git a/rostests/tests/dllexport/CMakeLists.txt b/rostests/tests/dllexport/CMakeLists.txt index d9c18cc1bb7..c67b01eed18 100644 --- a/rostests/tests/dllexport/CMakeLists.txt +++ b/rostests/tests/dllexport/CMakeLists.txt @@ -25,8 +25,8 @@ if(MSVC) add_compile_flags("/Zc:wchar_t-") endif() -add_library(dllimport_test +add_library(dllimport_test SHARED dllimport_framedyn.cpp) set_module_type(dllimport_test win32dll ENTRYPOINT 0) -add_importlibs(dllimport_test framedyn) +add_importlibs(dllimport_test msvcrt framedyn) target_link_libraries(dllimport_test framedynex)