mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 01:00:06 +00:00
12fbca9aba
- Introduce the case where entry point is 0. - Improve some dlls. svn path=/branches/cmake-bringup/; revision=48966
23 lines
521 B
CMake
23 lines
521 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
spec2def(cabinet ${CMAKE_CURRENT_SOURCE_DIR}/cabinet.spec ${CMAKE_CURRENT_BINARY_DIR}/cabinet.def)
|
|
|
|
list(APPEND SOURCE
|
|
cabinet_main.c
|
|
fci.c
|
|
fdi.c
|
|
cabinet.rc)
|
|
|
|
add_library(cabinet SHARED ${SOURCE})
|
|
|
|
set_entrypoint(cabinet 0)
|
|
|
|
target_link_libraries(cabinet
|
|
${CMAKE_CURRENT_BINARY_DIR}/cabinet.def
|
|
wine)
|
|
|
|
add_importlibs(cabinet kernel32 ntdll)
|
|
add_dependencies(cabinet cabinet_def psdk buildno_header)
|