mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 01:00:06 +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
54 lines
1.1 KiB
CMake
54 lines
1.1 KiB
CMake
|
|
add_definitions(
|
|
-D__WINESRC__
|
|
-D_DLL
|
|
-D__USE_CRTIMP
|
|
-D_WINE
|
|
-DHAVE_REGEX_H
|
|
-D_IMAGEHLP_SOURCE_)
|
|
|
|
if(ARCH MATCHES amd64)
|
|
add_definitions(-DUNW_FLAG_NHANDLER=0 -DUNW_FLAG_EHANDLER=1 -DUNW_FLAG_UHANDLER=2 -DUNW_FLAG_CHAININFO=3)
|
|
endif(ARCH MATCHES amd64)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
spec2def(dbghelp ${CMAKE_CURRENT_SOURCE_DIR}/dbghelp.spec ${CMAKE_CURRENT_BINARY_DIR}/dbghelp.def)
|
|
|
|
add_library(dbghelp SHARED
|
|
coff.c
|
|
cpu_i386.c
|
|
cpu_ppc.c
|
|
cpu_x86_64.c
|
|
crc32.c
|
|
dbghelp.c
|
|
dwarf.c
|
|
elf_module.c
|
|
image.c
|
|
macho_module.c
|
|
minidump.c
|
|
module.c
|
|
msc.c
|
|
path.c
|
|
pe_module.c
|
|
regex.c
|
|
rosstubs.c
|
|
source.c
|
|
stabs.c
|
|
stack.c
|
|
storage.c
|
|
symbol.c
|
|
type.c
|
|
version.rc)
|
|
|
|
set_module_type(dbghelp win32dll)
|
|
|
|
target_link_libraries(dbghelp
|
|
${CMAKE_CURRENT_BINARY_DIR}/dbghelp.def
|
|
wine
|
|
pseh
|
|
oldnames)
|
|
|
|
add_importlibs(dbghelp psapi version msvcrt kernel32 ntdll)
|
|
add_dependencies(dbghelp dbghelp_def)
|
|
add_livecd_target(dbghelp reactos/system32)
|