mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
1d2b1c4a24
- Get rid of buildno_header target, builno.h is generated at configure time. svn path=/branches/cmake-bringup/; revision=51220
77 lines
1.9 KiB
CMake
77 lines
1.9 KiB
CMake
|
|
add_subdirectory(notifyhook)
|
|
|
|
set_unicode()
|
|
|
|
#NOTE : explorer doesn't follow standard c++, and so doesn't compile with stlport headers
|
|
#I'm not willing to do it if explorer_new is hanging around.
|
|
#jgardou
|
|
#set_cpp()
|
|
|
|
add_definitions(
|
|
-DWIN32
|
|
-D__WINDRES__
|
|
-D_DLL -D__USE_CRTIMP)
|
|
|
|
#add_pch(explorer ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h SOURCE)
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
list(APPEND SOURCE
|
|
shell/mainframe.cpp
|
|
shell/unixfs.cpp
|
|
shell/ntobjfs.cpp
|
|
shell/filechild.cpp
|
|
shell/shellfs.cpp
|
|
shell/fatfs.cpp
|
|
shell/pane.cpp
|
|
shell/regfs.cpp
|
|
shell/webchild.cpp
|
|
shell/entries.cpp
|
|
shell/shellbrowser.cpp
|
|
shell/winfs.cpp
|
|
dialogs/searchprogram.cpp
|
|
dialogs/settings.cpp
|
|
i386-stub-win32.c
|
|
taskbar/taskbar.cpp
|
|
taskbar/favorites.cpp
|
|
taskbar/quicklaunch.cpp
|
|
taskbar/desktopbar.cpp
|
|
taskbar/startmenu.cpp
|
|
taskbar/traynotify.cpp
|
|
precomp.cpp
|
|
explorer.rc
|
|
services/startup.c
|
|
services/shellservices.cpp
|
|
desktop/desktop.cpp
|
|
explorer.cpp
|
|
utility/xs-native.cpp
|
|
utility/shellclasses.cpp
|
|
utility/dragdropimpl.cpp
|
|
utility/utility.cpp
|
|
utility/xmlstorage.cpp
|
|
# utility/splitpath.c msvcrt has _wsplitpath already
|
|
utility/window.cpp
|
|
utility/shellbrowserimpl.cpp) # utility/shelltests.cpp
|
|
|
|
add_executable(explorer ${SOURCE}) #${CMAKE_CURRENT_BINARY_DIR}/explorer_precomp.h.gch ${SOURCE})
|
|
|
|
set_subsystem(explorer windows)
|
|
set_entrypoint(explorer WinMainCRTStartup)
|
|
|
|
target_link_libraries(explorer
|
|
-lsupc++
|
|
-lstdc++
|
|
-lgcc
|
|
-lmingwex
|
|
wine
|
|
mingw_wmain
|
|
mingw_common
|
|
uuid)
|
|
|
|
add_importlibs(explorer advapi32 gdi32 user32 ws2_32 msimg32 comctl32 ole32 oleaut32 shell32 notifyhook msvcrt kernel32 ntdll)
|
|
|
|
set_image_base(explorer 0x00400000)
|
|
|
|
add_dependencies(explorer psdk)
|
|
add_cab_target(explorer 4)
|
|
add_cab(${CMAKE_CURRENT_SOURCE_DIR}/explorer-cfg-template.xml 4)
|