Move all temporary import libs to a single directory.

This allows linking to libraries with "-lfoo".

svn path=/branches/cmake-bringup/; revision=48796
This commit is contained in:
Sylvain Petreolle 2010-09-17 20:27:01 +00:00
parent 93dbd3207b
commit 174808a463
102 changed files with 175 additions and 173 deletions

View file

@ -35,7 +35,7 @@ set(MINGW_COMMON_SOURCE
)
add_library(mingw_common ${MINGW_COMMON_SOURCE})
target_link_libraries(mingw_common oldnames ${REACTOS_SOURCE_DIR}/dll/win32/kernel32/libkernel32.a ${REACTOS_SOURCE_DIR}/dll/ntdll/libntdll.a)
target_link_libraries(mingw_common oldnames -lkernel32 -lntdll)
set_target_properties(mingw_common PROPERTIES COMPILE_DEFINITIONS _M_CEE_PURE)
add_dependencies(mingw_common psdk)