File: CMakeLists.txt

package info (click to toggle)
qgis 3.10.14%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 889,896 kB
  • sloc: cpp: 986,392; python: 156,157; xml: 12,700; perl: 3,286; sh: 2,637; ansic: 2,085; sql: 1,514; javascript: 1,363; yacc: 1,000; lex: 562; lisp: 411; makefile: 234
file content (13 lines) | stat: -rw-r--r-- 450 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
FILE(GLOB PY_FILES __init__.py link_types.py plugin.py util.py)
PLUGIN_INSTALL(MetaSearch . ${PY_FILES} metadata.txt LICENSE.txt)

FOREACH(dir ui dialogs images resources resources/templates)
  FILE(GLOB _items ${dir}/*)
  SET(_files)
  FOREACH(_item ${_items})
    IF(NOT IS_DIRECTORY ${_item})
      LIST(APPEND _files ${_item})
    ENDIF(NOT IS_DIRECTORY ${_item})
  ENDFOREACH(_item)
  PLUGIN_INSTALL(MetaSearch ${dir} ${_files})
ENDFOREACH(dir)