2011-05-16 13:12:07 +00:00
|
|
|
|
2015-11-23 09:23:54 +00:00
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
|
2011-06-13 15:31:11 +00:00
|
|
|
add_definitions(-D__WINESRC__)
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2012-03-07 21:21:27 +00:00
|
|
|
spec2def(odbccp32.dll odbccp32.spec ADD_IMPORTLIB)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
odbccp32.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/odbccp32_stubs.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/odbccp32.def)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(odbccp32 MODULE ${SOURCE})
|
2013-02-23 16:45:48 +00:00
|
|
|
set_module_type(odbccp32 win32dll)
|
2011-05-16 13:12:07 +00:00
|
|
|
target_link_libraries(odbccp32 uuid wine)
|
2014-10-17 23:28:29 +00:00
|
|
|
add_importlibs(odbccp32 advapi32 msvcrt kernel32 ntdll)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET odbccp32 DESTINATION reactos/system32 FOR all)
|