forked from hugopl/RubyCreator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
78 lines (71 loc) · 2.09 KB
/
Copy pathCMakeLists.txt
File metadata and controls
78 lines (71 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
cmake_minimum_required(VERSION 3.16)
project(Ruby)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_CXX_STANDARD 17)
find_package(QtCreator REQUIRED COMPONENTS Core Plugins)
find_package(QT NAMES Qt6 REQUIRED COMPONENTS Widgets)
set(QtX Qt${QT_VERSION_MAJOR})
find_package(ECM REQUIRED NO_MODULE)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
find_package(KF5 REQUIRED COMPONENTS SyntaxHighlighting)
add_qtc_plugin(Ruby
PLUGIN_DEPENDS
QtCreator::Core
QtCreator::ProjectExplorer
QtCreator::TextEditor
DEPENDS
${QtX}::Widgets
QtCreator::ExtensionSystem
QtCreator::Utils
KF5::SyntaxHighlighting
SOURCES
LICENSE
README.md
RubyPlugin.cpp
RubyPlugin.h
RubyConstants.h
Ruby.qrc
editor/RubyAmbiguousMethodAssistProvider.cpp
editor/RubyAutoCompleter.cpp
editor/RubyCodeModel.cpp
editor/RubyCodeStylePreferencesFactory.cpp
editor/RubyCompletionAssist.cpp
editor/RubyEditor.cpp
editor/RubyEditorDocument.cpp
editor/RubyEditorFactory.cpp
editor/RubyEditorWidget.cpp
editor/RubyHighlighter.cpp
editor/RubyIndenter.cpp
editor/RubyQuickFixAssistProvider.cpp
editor/RubyQuickFixes.cpp
editor/RubyRubocopHighlighter.cpp
editor/RubyScanner.cpp
editor/RubySymbolFilter.cpp
projectmanager/RubyProject.cpp
projectmanager/RubyProjectWizard.cpp
projectmanager/RubyRunConfiguration.cpp
editor/RubyAmbiguousMethodAssistProvider.h
editor/RubyAutoCompleter.h
editor/RubyBlockState.h
editor/RubyCodeModel.h
editor/RubyCodeStylePreferencesFactory.h
editor/RubyCompletionAssist.h
editor/RubyEditor.h
editor/RubyEditorDocument.h
editor/RubyEditorFactory.h
editor/RubyEditorWidget.h
editor/RubyHighlighter.h
editor/RubyIndenter.h
editor/RubyQuickFixAssistProvider.h
editor/RubyQuickFixes.h
editor/RubyRubocopHighlighter.h
editor/RubyScanner.h
editor/RubySymbol.h
editor/RubySymbolFilter.h
editor/SourceCodeStream.h
projectmanager/RubyProject.h
projectmanager/RubyProjectWizard.h
projectmanager/RubyRunConfiguration.h
)