mirror of
https://github.com/reactos/reactos.git
synced 2025-01-11 08:38:17 +00:00
[CMAKE]
- Don't export symbols from pci(x) and pcmcia. svn path=/branches/cmake-bringup/; revision=48852
This commit is contained in:
parent
d7733b45c3
commit
9c28319873
3 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@ add_library(pci SHARED
|
|||
pdo.c
|
||||
pci.rc)
|
||||
|
||||
set_target_properties(pci PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--subsystem,native" SUFFIX ".sys")
|
||||
set_target_properties(pci PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--subsystem,native -Wl,--exclude-all-symbols" SUFFIX ".sys")
|
||||
|
||||
target_link_libraries(pci
|
||||
-lntoskrnl
|
||||
|
|
|
@ -40,7 +40,7 @@ list(APPEND SOURCE
|
|||
|
||||
add_library(pcix SHARED ${CMAKE_CURRENT_BINARY_DIR}/pcix_pci.h.gch ${SOURCE})
|
||||
|
||||
set_target_properties(pcix PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--subsystem,native" SUFFIX ".sys")
|
||||
set_target_properties(pcix PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--subsystem,native -Wl,--exclude-all-symbols" SUFFIX ".sys")
|
||||
|
||||
target_link_libraries(pcix
|
||||
-lntoskrnl
|
||||
|
|
|
@ -7,7 +7,7 @@ add_library(pcmcia SHARED
|
|||
pdo.c
|
||||
pcmcia.rc)
|
||||
|
||||
set_target_properties(pcmcia PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--subsystem,native" SUFFIX ".sys")
|
||||
set_target_properties(pcmcia PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--subsystem,native -Wl,--exclude-all-symbols" SUFFIX ".sys")
|
||||
|
||||
target_link_libraries(pcmcia
|
||||
-lntoskrnl
|
||||
|
|
Loading…
Reference in a new issue