Author: tkreuzer
Date: Mon Nov 1 09:39:06 2010
New Revision: 49397
URL:
http://svn.reactos.org/svn/reactos?rev=49397&view=rev
Log:
[NTDLLSYS]
Set LINKER_LANGUAGE to C. Neccessary for MSVC.
Modified:
branches/cmake-bringup/lib/ntdllsys/CMakeLists.txt
Modified: branches/cmake-bringup/lib/ntdllsys/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/ntdllsys/CMak…
==============================================================================
--- branches/cmake-bringup/lib/ntdllsys/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/lib/ntdllsys/CMakeLists.txt [iso-8859-1] Mon Nov 1 09:39:06
2010
@@ -1,4 +1,5 @@
set_source_files_properties(${REACTOS_BINARY_DIR}/lib/ntdllsys/ntdll.S PROPERTIES
GENERATED TRUE)
-add_library(ntdllsys ${REACTOS_BINARY_DIR}/lib/ntdllsys/ntdll.S)
+add_library(ntdllsys STATIC ${REACTOS_BINARY_DIR}/lib/ntdllsys/ntdll.S)
add_dependencies(ntdllsys ntdll_S)
+set_target_properties(ntdllsys PROPERTIES LINKER_LANGUAGE C)