Warning, /utilities/okteta/designer/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 set( oktetadesignerplugin_SRCS
0002   bytearraycolumnviewdesignerfactory.cpp
0003   bytearrayrowviewdesignerfactory.cpp
0004   oktetawidgetdesignerfactorycollection.cpp
0005   fillerbytearraymodel.cpp
0006 )
0007 
0008 
0009 add_library( oktetadesignerplugin  MODULE ${oktetadesignerplugin_SRCS} )
0010 
0011 target_link_libraries( oktetadesignerplugin
0012   OktetaGui
0013   OktetaCore
0014   Qt5::Widgets
0015   Qt5::UiPlugin
0016 )
0017 
0018 set_target_properties( oktetadesignerplugin PROPERTIES
0019     OUTPUT_NAME oktetawidgets
0020 )
0021 
0022 install( TARGETS oktetadesignerplugin  DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/designer )
0023 
0024 
0025 if( OKTETA_BUILD_EXAMPLES )
0026 add_subdirectory( examples )
0027 endif()