mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
[CMAKE]
- improve cacls build file - add control and extrac32 to build svn path=/branches/cmake-bringup/; revision=48881
This commit is contained in:
parent
ba887f723b
commit
0196ce1ec8
6 changed files with 30 additions and 6 deletions
|
@ -3,9 +3,9 @@ add_subdirectory(cacls)
|
|||
add_subdirectory(calc)
|
||||
add_subdirectory(charmap)
|
||||
add_subdirectory(cmdutils)
|
||||
#add_subdirectory(control)
|
||||
add_subdirectory(control)
|
||||
#add_subdirectory(dxdiag)
|
||||
#add_subdirectory(extrac32)
|
||||
add_subdirectory(extrac32)
|
||||
#add_subdirectory(fontview)
|
||||
#add_subdirectory(games)
|
||||
#add_subdirectory(hh)
|
||||
|
|
|
@ -1,12 +1,16 @@
|
|||
|
||||
add_executable(cacls
|
||||
list(APPEND SOURCE
|
||||
cacls.c
|
||||
cacls.rc)
|
||||
|
||||
set_module_type(cacls win32cui)
|
||||
add_executable(cacls
|
||||
${CMAKE_CURRENT_BINARY_DIR}/cacls_precomp.h.gch
|
||||
${SOURCE})
|
||||
|
||||
add_pch(cacls ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
|
||||
|
||||
set_unicode(cacls yes)
|
||||
|
||||
add_importlibs(cacls advapi32 ntdll user32 shell32 msvcrt)
|
||||
set_module_type(cacls win32cui)
|
||||
|
||||
add_dependencies(cacls psdk)
|
||||
add_importlibs(cacls advapi32 ntdll user32 shell32 msvcrt)
|
10
base/applications/control/CMakeLists.txt
Normal file
10
base/applications/control/CMakeLists.txt
Normal file
|
@ -0,0 +1,10 @@
|
|||
|
||||
add_executable(control
|
||||
control.c
|
||||
control.rc)
|
||||
|
||||
set_unicode(control yes)
|
||||
|
||||
set_module_type(control win32gui)
|
||||
|
||||
add_importlibs(control advapi32 shell32 kernel32 msvcrt)
|
10
base/applications/extrac32/CMakeLists.txt
Normal file
10
base/applications/extrac32/CMakeLists.txt
Normal file
|
@ -0,0 +1,10 @@
|
|||
|
||||
add_executable(extrac32 extrac32.c)
|
||||
|
||||
set_unicode(extrac32 yes)
|
||||
|
||||
set_module_type(extrac32 win32gui)
|
||||
|
||||
target_link_libraries(extrac32 wine)
|
||||
|
||||
add_importlibs(extrac32 shell32 setupapi shlwapi user32 msvcrt)
|
BIN
importlibs/libsetupapi.a
Normal file
BIN
importlibs/libsetupapi.a
Normal file
Binary file not shown.
BIN
importlibs/libshlwapi.a
Normal file
BIN
importlibs/libshlwapi.a
Normal file
Binary file not shown.
Loading…
Reference in a new issue