xref: /reactos/dll/win32/loadperf/CMakeLists.txt (revision 53221834)
1
2add_definitions(-D__WINESRC__)
3include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
4spec2def(loadperf.dll loadperf.spec ADD_IMPORTLIB)
5
6list(APPEND SOURCE
7    loadperf_main.c
8    stubs.c
9    ${CMAKE_CURRENT_BINARY_DIR}/loadperf.def)
10
11add_library(loadperf MODULE ${SOURCE})
12set_module_type(loadperf win32dll)
13target_link_libraries(loadperf wine)
14add_importlibs(loadperf msvcrt kernel32 ntdll)
15add_cd_file(TARGET loadperf DESTINATION reactos/system32 FOR all)
16