reactos/dll/win32/oledlg/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

22 lines
530 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
add_definitions(-D__WINESRC__)
spec2def(oledlg ${CMAKE_CURRENT_SOURCE_DIR}/oledlg.spec ${CMAKE_CURRENT_BINARY_DIR}/oledlg.def)
add_library(oledlg SHARED
insobjdlg.c
oledlg_main.c
pastespl.c
rsrc.rc)
set_module_type(oledlg win32dll)
target_link_libraries(oledlg
${CMAKE_CURRENT_BINARY_DIR}/oledlg.def
wine)
add_importlibs(oledlg ole32 comdlg32 user32 advapi32 kernel32 ntdll)
add_dependencies(oledlg oledlg_def)
add_cab_target(oledlg 1)