mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[DEVMGR]
- Rearrange the file structure, move the properties/resource/misc stuff to a ./properties folder - Add a CMakeLists.txt file to combine both old and new code. Should now build with the msvc RosBe (doesn't yet run) svn path=/trunk/; revision=68371
This commit is contained in:
parent
63185511a1
commit
7948e912e3
8 changed files with 18 additions and 9 deletions
|
@ -1,14 +1,24 @@
|
||||||
|
|
||||||
spec2def(devmgr.dll devmgr.spec ADD_IMPORTLIB)
|
spec2def(devmgr.dll devmgr.spec ADD_IMPORTLIB)
|
||||||
|
|
||||||
|
set_cpp(WITH_RTTI WITH_STL)
|
||||||
|
|
||||||
|
include_directories(${REACTOS_SOURCE_DIR}/lib/atl)
|
||||||
|
|
||||||
list(APPEND SOURCE
|
list(APPEND SOURCE
|
||||||
advprop.c
|
|
||||||
devprblm.c
|
|
||||||
hwpage.c
|
|
||||||
hwresource.c
|
|
||||||
misc.c
|
|
||||||
stubs.c
|
|
||||||
precomp.h
|
precomp.h
|
||||||
|
Properties/advprop.c
|
||||||
|
Properties/devprblm.c
|
||||||
|
Properties/hwpage.c
|
||||||
|
Properties/hwresource.c
|
||||||
|
Properties/misc.c
|
||||||
|
Properties/stubs.c
|
||||||
|
devmgmt/ClassNode.cpp
|
||||||
|
devmgmt/DeviceNode.cpp
|
||||||
|
devmgmt/DeviceView.cpp
|
||||||
|
devmgmt/MainWindow.cpp
|
||||||
|
devmgmt/Node.cpp
|
||||||
|
devmgmt/RootNode.cpp
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/devmgr_stubs.c)
|
${CMAKE_CURRENT_BINARY_DIR}/devmgr_stubs.c)
|
||||||
|
|
||||||
add_library(devmgr SHARED
|
add_library(devmgr SHARED
|
||||||
|
@ -17,7 +27,6 @@ add_library(devmgr SHARED
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/devmgr.def)
|
${CMAKE_CURRENT_BINARY_DIR}/devmgr.def)
|
||||||
|
|
||||||
set_module_type(devmgr win32dll UNICODE)
|
set_module_type(devmgr win32dll UNICODE)
|
||||||
target_link_libraries(devmgr uuid wine)
|
target_link_libraries(devmgr uuid atlnew wine)
|
||||||
add_importlibs(devmgr setupapi advapi32 newdev user32 version msvcrt kernel32 ntdll)
|
add_importlibs(devmgr setupapi advapi32 newdev user32 gdi32 comctl32 version msvcrt kernel32 ole32 uxtheme ntdll)
|
||||||
add_pch(devmgr precomp.h SOURCE)
|
|
||||||
add_cd_file(TARGET devmgr DESTINATION reactos/system32 FOR all)
|
add_cd_file(TARGET devmgr DESTINATION reactos/system32 FOR all)
|
||||||
|
|
0
reactos/dll/win32/devmgr_new/includes/.gitignore
vendored
Normal file
0
reactos/dll/win32/devmgr_new/includes/.gitignore
vendored
Normal file
Loading…
Reference in a new issue