mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00

- add macros add_cab and add_cab_target to add files to reactos.dff - add bootcd target - make use of these macros to create bootcd and livecd Bootcd works and install things, but 2nd stage fails booting. We need debug symbols!!! svn path=/branches/cmake-bringup/; revision=49347
17 lines
No EOL
438 B
CMake
17 lines
No EOL
438 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
spec2def(lz32 ${CMAKE_CURRENT_SOURCE_DIR}/lz32.spec ${CMAKE_CURRENT_BINARY_DIR}/lz32.def)
|
|
|
|
add_library(lz32 SHARED version.rc)
|
|
|
|
set_entrypoint(lz32 0)
|
|
|
|
target_link_libraries(lz32
|
|
${CMAKE_CURRENT_BINARY_DIR}/lz32.def
|
|
wine)
|
|
|
|
add_importlibs(lz32 kernel32 ntdll)
|
|
add_dependencies(lz32 lz32_def psdk buildno_header)
|
|
add_cab_target(lz32 1) |