mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
89271fe38d
Add each win32dll module to livecd and remove global temporary add-on from gcc.cmake. Fix pch use in fmifs. Enable remaining dlls in dll/win32/CMakeLists.txt. svn path=/branches/cmake-bringup/; revision=49230
25 lines
599 B
CMake
25 lines
599 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
spec2def(inseng ${CMAKE_CURRENT_SOURCE_DIR}/inseng.spec ${CMAKE_CURRENT_BINARY_DIR}/inseng.def)
|
|
|
|
add_library(inseng SHARED inseng_main.c regsvr.c)
|
|
|
|
set_module_type(inseng win32dll)
|
|
|
|
target_link_libraries(inseng
|
|
${CMAKE_CURRENT_BINARY_DIR}/inseng.def
|
|
uuid
|
|
wine)
|
|
|
|
add_importlibs(inseng
|
|
ole32
|
|
advapi32
|
|
kernel32
|
|
ntdll)
|
|
|
|
add_dependencies(inseng inseng_def)
|
|
add_livecd_target(inseng reactos/system32)
|