[DLLIMPORT_TEST]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 3 Oct 2014 19:29:05 +0000 (19:29 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 3 Oct 2014 19:29:05 +0000 (19:29 +0000)
- Only link to framedynex on GCC builds

svn path=/trunk/; revision=64511

rostests/tests/dllexport/CMakeLists.txt

index f5e861c..fe24312 100644 (file)
@@ -29,4 +29,6 @@ add_library(dllimport_test SHARED
     dllimport_framedyn.cpp)
 set_module_type(dllimport_test win32dll ENTRYPOINT 0)
 add_importlibs(dllimport_test framedyn)
-target_link_libraries(dllimport_test framedynex)
+if(NOT MSVC)
+    target_link_libraries(dllimport_test framedynex)
+endif()