Skip to content

Commit

Permalink
using ioc main options in pvxs
Browse files Browse the repository at this point in the history
  • Loading branch information
ZohebShaikh committed Oct 2, 2024
1 parent f3d6fe6 commit a316ade
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions python/pvxslibs/ioc.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import os

from epicscorelibs import ioc
import pvxslibs.path

if __name__ == "__main__":
os.environ.setdefault("PVXS_QSRV_ENABLE", "YES")
pvxs_dbd_load = (("pvxsIoc.dbd", pvxslibs.path.dbd_path), )
pvxs_dso_load = ("pvxslibs.lib.pvxsIoc", )
ioc.main(extra_dbd_load=pvxs_dbd_load, extra_dso_load=pvxs_dso_load)

0 comments on commit a316ade

Please sign in to comment.