[DLLEXPORT_TEST]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Thu, 2 Oct 2014 07:58:18 +0000 (07:58 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Thu, 2 Oct 2014 07:58:18 +0000 (07:58 +0000)
Make it a DLL, not a static lib. Noticed by Thomas.

svn path=/trunk/; revision=64450

rostests/tests/dllexport/CMakeLists.txt

index d9c18cc..c67b01e 100644 (file)
@@ -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)