[CMAKE]
[reactos.git] / drivers / network / dd / ne2000 / CMakeLists.txt
1
2 include_directories(BEFORE include)
3
4 list(APPEND SOURCE
5 ne2000/8390.c
6 ne2000/main.c
7 ne2000.rc)
8
9 add_library(ne2000 SHARED ${SOURCE})
10
11 set_target_properties(ne2000 PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--exclude-all-symbols -Wl,--subsystem,native" SUFFIX ".sys")
12
13 target_link_libraries(ne2000
14 -lndis
15 -lntoskrnl
16 -lhal)
17
18 add_dependencies(ne2000 psdk bugcodes buildno_header)