[SNDVOL32] Advanced controls dialog: Remove the TBS_AUTOTICKS style from the trackbar...
[reactos.git] / base / setup / reactos / CMakeLists.txt
1
2 include_directories(
3 ${CMAKE_CURRENT_SOURCE_DIR}
4 ${CMAKE_CURRENT_SOURCE_DIR}/../lib
5 # ${REACTOS_SOURCE_DIR}/base/setup/lib
6 ${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/zlib
7 ${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers)
8
9 list(APPEND SOURCE
10 spapisup/fileqsup.c
11 spapisup/infsupp.c
12 drivepage.c
13 reactos.c
14 treelist.c
15 reactos.h)
16
17 file(GLOB reactos_rc_deps res/*.*)
18 add_rc_deps(reactos.rc ${reactos_rc_deps})
19 add_executable(reactos ${SOURCE} reactos.rc)
20 set_module_type(reactos win32gui UNICODE)
21 add_pch(reactos reactos.h SOURCE)
22 target_link_libraries(reactos uuid setuplib ext2lib vfatlib btrfslib)
23 add_importlibs(reactos advapi32 gdi32 user32 comctl32 shlwapi setupapi msvcrt kernel32 ntdll)
24 add_cd_file(TARGET reactos DESTINATION reactos NO_CAB FOR bootcd)