reactos/dll/win32/crtdll/CMakeLists.txt
Hermès Bélusca-Maïto 3224e67cfc Sync to trunk revision 61757.
svn path=/branches/ntvdm/; revision=61758
2014-01-22 22:56:41 +00:00

34 lines
698 B
CMake

spec2def(crtdll.dll crtdll.spec ADD_IMPORTLIB)
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)
add_library(crtdll SHARED ${SOURCE})
set_module_type(crtdll win32dll ENTRYPOINT DllMain 12)
target_link_libraries(crtdll crt wine)
if(MSVC)
add_importlibs(crtdll msvcrt)
target_link_libraries(crtdll oldnames)
endif()
add_importlibs(crtdll kernel32 ntdll)
add_cd_file(TARGET crtdll DESTINATION reactos/system32 FOR all)