mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
18 lines
383 B
CMake
18 lines
383 B
CMake
|
|
add_definitions(
|
|
-D__ROS_LONG64__
|
|
-D_DLL -D__USE_CRTIMP)
|
|
|
|
list(APPEND SOURCE
|
|
advpack.c
|
|
files.c
|
|
install.c
|
|
testlist.c)
|
|
|
|
add_executable(advpack_winetest ${SOURCE})
|
|
|
|
target_link_libraries(advpack_winetest wine)
|
|
|
|
set_module_type(advpack_winetest win32cui)
|
|
add_importlibs(advpack_winetest cabinet advapi32 msvcrt kernel32 ntdll)
|
|
add_cab_target(advpack_winetest 7)
|