reactos/dll/win32/t2embed/CMakeLists.txt
Jérôme Gardou fd5ef6b1c1 [CMAKE]
- 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
2010-10-30 09:53:53 +00:00

20 lines
485 B
CMake

set_unicode()
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
spec2def(t2embed ${CMAKE_CURRENT_SOURCE_DIR}/t2embed.spec ${CMAKE_CURRENT_BINARY_DIR}/t2embed.def)
add_library(t2embed SHARED t2embed.c t2embed.rc)
set_module_type(t2embed win32dll)
target_link_libraries(t2embed
${CMAKE_CURRENT_BINARY_DIR}/t2embed.def
wine)
add_importlibs(t2embed gdi32 user32 advapi32 version kernel32 ntdll)
add_dependencies(t2embed t2embed_def)
add_cab_target(t2embed 1)