mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:15:52 +00:00
[CMAKE]
- Move more dlls with no stubs into using def files instead of spec files. svn path=/branches/cmake-bringup/; revision=49449
This commit is contained in:
parent
67948fbc90
commit
79b73c825d
63 changed files with 470 additions and 120 deletions
|
@ -1,13 +1,15 @@
|
|||
|
||||
add_definitions(-D_DLL -D__USE_CRTIMP)
|
||||
add_definitions(-D__WINESRC__)
|
||||
add_definitions(
|
||||
-D_DLL -D__USE_CRTIMP
|
||||
-D__WINESRC__)
|
||||
|
||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||
|
||||
spec2def(msg711.acm msg711.acm.spec)
|
||||
add_library(msg711.acm SHARED msg711.c msg711.def)
|
||||
|
||||
add_library(msg711.acm SHARED msg711.c
|
||||
${CMAKE_CURRENT_BINARY_DIR}/msg711.def)
|
||||
if(NOT MSVC)
|
||||
set_source_files_properties(msg711.def PROPERTIES EXTERNAL_OBJECT TRUE)
|
||||
endif()
|
||||
|
||||
set_entrypoint(msg711.acm 0)
|
||||
set_target_properties(msg711.acm PROPERTIES SUFFIX "")
|
||||
|
|
5
dll/win32/msg711.acm/msg711.def
Normal file
5
dll/win32/msg711.acm/msg711.def
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
LIBRARY msg711.acm
|
||||
|
||||
EXPORTS
|
||||
DriverProc@20=G711_DriverProc@20 @1 PRIVATE
|
Loading…
Add table
Add a link
Reference in a new issue