reactos/dll/win32/crtdll/CMakeLists.txt
Timo Kreuzer f6165b795c [CMAKE] Convert crtdll to spec
svn path=/branches/cmake-bringup/; revision=50400
2011-01-16 18:02:17 +00:00

40 lines
790 B
CMake

spec2def(crtdll.dll crtdll.spec)
add_definitions(
-DUSE_MSVCRT_PREFIX
-D_MSVCRT_LIB_
-D_MSVCRT_
-DCRTDLL
-D_CTYPE_DISABLE_MACROS
-D_NO_INLINING
-D__MINGW_IMPORT="")
include_directories(${REACTOS_SOURCE_DIR}/lib/sdk/crt/include)
list(APPEND SOURCE
dllmain.c
crtdll.rc
${CMAKE_CURRENT_BINARY_DIR}/crtdll.def)
if(NOT MSVC)
set_source_files_properties(crtdll.def PROPERTIES EXTERNAL_OBJECT TRUE)
endif()
add_library(crtdll SHARED
${CMAKE_CURRENT_BINARY_DIR}/crtdll_precomp.h.gch
${SOURCE})
set_module_type(crtdll win32dll)
set_entrypoint(crtdll DllMain@12)
target_link_libraries(crtdll
wine
crt)
add_importlibs(crtdll kernel32 ntdll)
add_pch(crtdll ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
add_cab_target(crtdll 1)