Skip to content

ISISNeutronMuon/pvaccess-labview

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PVAccess for LabVIEW

An EPICS PVAccess library for LabVIEW.

⚠️ This software is in the alpha stage of development and does not have a stable interface.

image

Building

  • Clone EPICS Base to ./epics-base and build it

    git clone https://github.com/epics-base/epics-base.git
    make -C epics-base
  • Clone PVXS to ./pvxs and build it

    git clone --recurse-submodules https://github.com/epics-base/pvxs.git
    echo 'EPICS_BASE=$(TOP)/../epics-base' > ./pvxs/configure/RELEASE.local
    make -C pvxs/bundle libevent
    make -C pvxs

    See the PVXS docs for more details

  • Build this library

    • Windows
       cmake -G "Visual Studio 17 2022" -A x64 -B .\build
       cmake --build .\build --config Release
      
    • Linux
       cmake -B ./build
       cmake --build ./build