mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
e9977ecc9f
- More work on the dlls. - libgcc is already a standard C lib, don't relink to it for executables. - ICU isn't needed for now, disable it. svn path=/branches/cmake-bringup/; revision=49059
13 lines
301 B
CMake
13 lines
301 B
CMake
|
|
set_unicode()
|
|
|
|
list(APPEND SOURCE cacls.c cacls.rc)
|
|
|
|
add_executable(cacls
|
|
${CMAKE_CURRENT_BINARY_DIR}/cacls_precomp.h.gch
|
|
${SOURCE})
|
|
|
|
add_pch(cacls ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
|
|
|
|
set_module_type(cacls win32cui)
|
|
add_importlibs(cacls advapi32 user32 shell32 msvcrt kernel32)
|