mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
061c7ecb1a
Alias CHSTRING_WCHAR to unsigned short and use inline wrappers to be able to use the thing with modern compilers Put the GCC aliases into the public header. Enable build with clang-cl
16 lines
463 B
CMake
16 lines
463 B
CMake
|
|
spec2def(framedyn.dll framedyn.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
main.c
|
|
chstring.cpp
|
|
provider.cpp
|
|
${CMAKE_CURRENT_BINARY_DIR}/framedyn.def)
|
|
|
|
add_library(framedyn MODULE ${SOURCE})
|
|
target_link_libraries(framedyn cpprt)
|
|
set_target_cpp_properties(framedyn WITH_EXCEPTIONS)
|
|
set_module_type(framedyn win32dll UNICODE)
|
|
add_importlibs(framedyn oleaut32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET framedyn DESTINATION reactos/system32/wbem FOR all)
|