qt - CustusX plugin: Where are the compiled .ui files stored and what's the naming convention? -
for plugin custusx realizes guiextenderservice want use qt designer file (.ui) define gui widget.
the cmakelists.txt has section with:
# qt designer files should processed qts uic set(plugin_ui_forms )
if put ui file there processed uic tool (if supply wrong name failes on cmake generate). however, cannot find again neither in build directory nor in source directory.
where compiled ui files placed , what's name inclusion?
seems overlooked obvious - completeness:
in cmakelists.txt, add ui file in section qt designer files:
# qt designer files should processed qts uic set(plugin_ui_forms foo.ui )
then file ui_foo.h
created in plugin build directory (e.g. my_custus_build_directory/source/plugins/org.custusx.myplugin/ui_foo.h
)
Comments
Post a Comment