mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 03:48:17 +00:00
ed61512236
in favor of add_compile_options and the like with generator expressions Also take this as an opportunity to remove the C++11 standard hack, GCC 8 now defaults to C++14
19 lines
530 B
CMake
19 lines
530 B
CMake
|
|
include_directories(
|
|
includes)
|
|
|
|
list(APPEND SOURCE
|
|
ACListISF.cpp
|
|
IACLCustomMRU.cpp
|
|
SHEnumClassesOfCategories.cpp
|
|
SHExplorerParseCmdLine.c
|
|
testlist.c)
|
|
|
|
add_executable(browseui_apitest ${SOURCE})
|
|
|
|
target_link_libraries(browseui_apitest uuid wine cpprt atl_classes)
|
|
set_target_cpp_properties(browseui_apitest WITH_EXCEPTIONS WITH_RTTI)
|
|
set_module_type(browseui_apitest win32cui)
|
|
add_importlibs(browseui_apitest advapi32 shell32 ole32 shlwapi msvcrt kernel32 ntdll)
|
|
add_rostests_file(TARGET browseui_apitest)
|