mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
612d72cb58
* Move the copying back where it belongs. CMake may generate the dependencies the wrong way around (explorer-new should depend on rshell), but at least the copying works as expected, even if I always have to "build solution". * Allow toggling between TBSTYLE_EX_VERTICAL and the manual TBSTATE_WRAP setting by (un)definiting TBSTYLE_EX_VERTICAL. CORE-7881 svn path=/branches/shell-experiments/; revision=62412
14 lines
No EOL
224 B
CMake
14 lines
No EOL
224 B
CMake
|
|
PROJECT(SHELL)
|
|
|
|
list(APPEND SOURCE
|
|
filebrowser.c
|
|
filebrowser.rc)
|
|
|
|
add_executable(filebrowser ${SOURCE})
|
|
set_module_type(filebrowser win32gui UNICODE)
|
|
add_importlibs(filebrowser
|
|
shell32
|
|
msvcrt
|
|
kernel32)
|
|
|