Author: tkreuzer Date: Thu Oct 2 07:58:18 2014 New Revision: 64450
URL: http://svn.reactos.org/svn/reactos?rev=64450&view=rev Log: [DLLEXPORT_TEST] Make it a DLL, not a static lib. Noticed by Thomas.
Modified: trunk/rostests/tests/dllexport/CMakeLists.txt
Modified: trunk/rostests/tests/dllexport/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/rostests/tests/dllexport/CMakeLists... ============================================================================== --- trunk/rostests/tests/dllexport/CMakeLists.txt [iso-8859-1] (original) +++ trunk/rostests/tests/dllexport/CMakeLists.txt [iso-8859-1] Thu Oct 2 07:58:18 2014 @@ -25,8 +25,8 @@ 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)