Skip to content
Snippets Groups Projects
Commit 835eac6f authored by rivers's avatar rivers
Browse files

Changes for windows-x64 suppport

parent 5d71e37a
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ PROD_IOC = xxx
# doesn't matter, but the order of libraries does.
# <name>.dbd will be created from <name>Include.dbd
ifeq ($(OS_CLASS), WIN32)
ifeq ($(T_A), win32-x86)
DBD += iocxxxWin32.dbd
iocxxxWin32_DBD += xxxCommonInclude.dbd
......@@ -44,13 +44,23 @@ ifeq ($(OS_CLASS), WIN32)
#iocxxxWin32_DBD += mcaCanberraSupport.dbd
# If you want to build parallel port or USB interfaces to Saturn and/or xMAP DXP
# then uncomment the following two lines
# then uncomment the following lines
iocxxxWin32_DBD += dxpSupport.dbd
xxx_LIBS_WIN32 += dxp handel
xxx_LIBS_WIN32 += DLPORTIO PlxApi
xxx_SYS_LIBS_WIN32 += setupapi
endif
ifeq ($(T_A), windows-x64)
DBD += iocxxxWin64.dbd
iocxxxWin64_DBD += xxxCommonInclude.dbd
# If your host supports libpcap and libnet and you want to build Canberra network
# support uncomment the following line
#iocxxxWin32_DBD += mcaCanberraSupport.dbd
endif
ifeq ($(EPICS_HOST_ARCH), cygwin-x86)
DBD += iocxxxCygwin.dbd
iocxxxCygwin_DBD += xxxCommonInclude.dbd
......@@ -131,7 +141,12 @@ endif
# <name>_registerRecordDeviceDriver.cpp will be created from <name>.dbd
xxx_SRCS_vxWorks += iocxxxVX_registerRecordDeviceDriver.cpp
xxx_SRCS_Linux += iocxxxLinux_registerRecordDeviceDriver.cpp xxxMain.cpp
ifeq ($(T_A),win32-x86)
xxx_SRCS_WIN32 += iocxxxWin32_registerRecordDeviceDriver.cpp xxxMain.cpp
endif
ifeq ($(T_A),windows-x64)
xxx_SRCS_WIN32 += iocxxxWin64_registerRecordDeviceDriver.cpp xxxMain.cpp
endif
xxx_SRCS_cygwin32 += iocxxxCygwin_registerRecordDeviceDriver.cpp xxxMain.cpp
xxx_SRCS_solaris += iocxxx_solaris_registerRecordDeviceDriver.cpp xxxMain.cpp
xxx_SRCS_Darwin += iocxxxDarwin_registerRecordDeviceDriver.cpp xxxMain.cpp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment