├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── change-notes.html ├── description.html ├── gradle.properties ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── res ├── create_project.png ├── edit_configuration.png ├── logo256.png ├── menu.png ├── output_panel.png ├── problem.gif ├── project_configuration.png ├── quickstart.gif ├── run_configuration.png └── run_plugin.png ├── settings.gradle.kts └── src ├── main ├── kotlin │ └── io │ │ └── xmake │ │ ├── actions │ │ ├── BuildAction.kt │ │ ├── CleanAction.kt │ │ ├── CleanConfigurationAction.kt │ │ ├── QuickStartAction.kt │ │ ├── RebuildAction.kt │ │ ├── RunAction.kt │ │ ├── UpdateCmakeListsAction.kt │ │ └── UpdateCompileCommandsAction.kt │ │ ├── file │ │ ├── XMakeLuaFileChangeListener.kt │ │ ├── XMakeLuaFileType.kt │ │ └── XMakeLuaLanguage.kt │ │ ├── icons │ │ ├── XMakeIconProvider.kt │ │ └── XMakeIcons.kt │ │ ├── project │ │ ├── XMakeModuleConfigurationEditorProvider.kt │ │ ├── XMakeProjectToolkitConfigurable.kt │ │ ├── XMakeToolWindowFactory.kt │ │ ├── XMakeToolWindowOutputPanel.kt │ │ ├── XMakeToolWindowProblemPanel.kt │ │ ├── directory │ │ │ └── ui │ │ │ │ └── DirectoryBrowser.kt │ │ ├── target │ │ │ └── TargetManager.kt │ │ ├── toolkit │ │ │ ├── ActivatedToolkit.kt │ │ │ ├── Toolkit.kt │ │ │ ├── ToolkitChangedNotifier.kt │ │ │ ├── ToolkitHost.kt │ │ │ ├── ToolkitHostType.kt │ │ │ ├── ToolkitManager.kt │ │ │ └── ui │ │ │ │ ├── ToolkitComboBox.kt │ │ │ │ ├── ToolkitComboBoxRenderer.kt │ │ │ │ └── ToolkitListItem.kt │ │ └── wizard │ │ │ ├── NewProjectWizardDirectoryGeneratorAdapter.kt │ │ │ ├── XMakeGeneratorNewProjectWizard.kt │ │ │ ├── XMakeNewProjectWizardData.kt │ │ │ ├── XMakeProjectDirectoryGenerator.kt │ │ │ ├── XMakeProjectModuleBuilder.kt │ │ │ └── XMakeProjectWizardStep.kt │ │ ├── run │ │ ├── XMakeDefaultRunner.kt │ │ ├── XMakeRunConfiguration.kt │ │ ├── XMakeRunConfigurationEditor.kt │ │ ├── XMakeRunConfigurationProducer.kt │ │ ├── XMakeRunConfigurationType.kt │ │ └── XMakeRunner.kt │ │ ├── shared │ │ ├── XMakeConfiguration.kt │ │ └── XMakeProblem.kt │ │ └── utils │ │ ├── Command.kt │ │ ├── SystemUtils.kt │ │ ├── exception │ │ ├── XMakeRunConfigurationNotSetException.kt │ │ └── XMakeToolkitNotSetException.kt │ │ ├── execute │ │ ├── CommandEx.kt │ │ ├── Instruction.kt │ │ ├── SftpChannelEx.kt │ │ └── Sync.kt │ │ ├── extension │ │ ├── SshToolkitHostExtensionImpl.kt │ │ └── ToolkitHostExtension.kt │ │ ├── info │ │ ├── XMakeInfo.kt │ │ ├── XMakeInfoActivity.kt │ │ ├── XMakeInfoInstance.kt │ │ ├── XMakeInfoManager.kt │ │ └── XMakeInfoTypes.kt │ │ └── interact │ │ ├── LocalData.kt │ │ └── XMakeData.kt └── resources │ ├── META-INF │ ├── io.xmake-ssh.xml │ ├── plugin.xml │ └── pluginIcon.svg │ └── icons │ ├── xmake-dark-fill-translucent.svg │ ├── xmake-dark.svg │ └── xmake.svg └── test └── kotlin └── io └── xmake └── project └── toolkit └── ToolkitManagerTest.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/README.md -------------------------------------------------------------------------------- /change-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/change-notes.html -------------------------------------------------------------------------------- /description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/description.html -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/gradlew.bat -------------------------------------------------------------------------------- /res/create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/res/create_project.png -------------------------------------------------------------------------------- /res/edit_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/res/edit_configuration.png -------------------------------------------------------------------------------- /res/logo256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/res/logo256.png -------------------------------------------------------------------------------- /res/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/res/menu.png -------------------------------------------------------------------------------- /res/output_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/res/output_panel.png -------------------------------------------------------------------------------- /res/problem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/res/problem.gif -------------------------------------------------------------------------------- /res/project_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/res/project_configuration.png -------------------------------------------------------------------------------- /res/quickstart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/res/quickstart.gif -------------------------------------------------------------------------------- /res/run_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/res/run_configuration.png -------------------------------------------------------------------------------- /res/run_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/res/run_plugin.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "xmake-idea" -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/actions/BuildAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/actions/BuildAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/actions/CleanAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/actions/CleanAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/actions/CleanConfigurationAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/actions/CleanConfigurationAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/actions/QuickStartAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/actions/QuickStartAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/actions/RebuildAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/actions/RebuildAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/actions/RunAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/actions/RunAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/actions/UpdateCmakeListsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/actions/UpdateCmakeListsAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/actions/UpdateCompileCommandsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/actions/UpdateCompileCommandsAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/file/XMakeLuaFileChangeListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/file/XMakeLuaFileChangeListener.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/file/XMakeLuaFileType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/file/XMakeLuaFileType.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/file/XMakeLuaLanguage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/file/XMakeLuaLanguage.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/icons/XMakeIconProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/icons/XMakeIconProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/icons/XMakeIcons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/icons/XMakeIcons.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/XMakeModuleConfigurationEditorProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/XMakeModuleConfigurationEditorProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/XMakeProjectToolkitConfigurable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/XMakeProjectToolkitConfigurable.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/XMakeToolWindowFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/XMakeToolWindowFactory.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/XMakeToolWindowOutputPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/XMakeToolWindowOutputPanel.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/XMakeToolWindowProblemPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/XMakeToolWindowProblemPanel.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/directory/ui/DirectoryBrowser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/directory/ui/DirectoryBrowser.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/target/TargetManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/target/TargetManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/toolkit/ActivatedToolkit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/toolkit/ActivatedToolkit.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/toolkit/Toolkit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/toolkit/Toolkit.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/toolkit/ToolkitChangedNotifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/toolkit/ToolkitChangedNotifier.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/toolkit/ToolkitHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/toolkit/ToolkitHost.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/toolkit/ToolkitHostType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/toolkit/ToolkitHostType.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/toolkit/ToolkitManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/toolkit/ToolkitManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/toolkit/ui/ToolkitComboBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/toolkit/ui/ToolkitComboBox.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/toolkit/ui/ToolkitComboBoxRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/toolkit/ui/ToolkitComboBoxRenderer.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/toolkit/ui/ToolkitListItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/toolkit/ui/ToolkitListItem.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/wizard/NewProjectWizardDirectoryGeneratorAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/wizard/NewProjectWizardDirectoryGeneratorAdapter.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/wizard/XMakeGeneratorNewProjectWizard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/wizard/XMakeGeneratorNewProjectWizard.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/wizard/XMakeNewProjectWizardData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/wizard/XMakeNewProjectWizardData.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/wizard/XMakeProjectDirectoryGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/wizard/XMakeProjectDirectoryGenerator.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/wizard/XMakeProjectModuleBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/wizard/XMakeProjectModuleBuilder.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/project/wizard/XMakeProjectWizardStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/project/wizard/XMakeProjectWizardStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/run/XMakeDefaultRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/run/XMakeDefaultRunner.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/run/XMakeRunConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/run/XMakeRunConfiguration.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/run/XMakeRunConfigurationEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/run/XMakeRunConfigurationEditor.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/run/XMakeRunConfigurationProducer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/run/XMakeRunConfigurationProducer.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/run/XMakeRunConfigurationType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/run/XMakeRunConfigurationType.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/run/XMakeRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/run/XMakeRunner.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/shared/XMakeConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/shared/XMakeConfiguration.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/shared/XMakeProblem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/shared/XMakeProblem.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/Command.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/Command.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/SystemUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/SystemUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/exception/XMakeRunConfigurationNotSetException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/exception/XMakeRunConfigurationNotSetException.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/exception/XMakeToolkitNotSetException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/exception/XMakeToolkitNotSetException.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/execute/CommandEx.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/execute/CommandEx.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/execute/Instruction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/execute/Instruction.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/execute/SftpChannelEx.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/execute/SftpChannelEx.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/execute/Sync.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/execute/Sync.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/extension/SshToolkitHostExtensionImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/extension/SshToolkitHostExtensionImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/extension/ToolkitHostExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/extension/ToolkitHostExtension.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/info/XMakeInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/info/XMakeInfo.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/info/XMakeInfoActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/info/XMakeInfoActivity.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/info/XMakeInfoInstance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/info/XMakeInfoInstance.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/info/XMakeInfoManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/info/XMakeInfoManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/info/XMakeInfoTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/info/XMakeInfoTypes.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/interact/LocalData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/interact/LocalData.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/xmake/utils/interact/XMakeData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/kotlin/io/xmake/utils/interact/XMakeData.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/io.xmake-ssh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/resources/META-INF/io.xmake-ssh.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/icons/xmake-dark-fill-translucent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/resources/icons/xmake-dark-fill-translucent.svg -------------------------------------------------------------------------------- /src/main/resources/icons/xmake-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/resources/icons/xmake-dark.svg -------------------------------------------------------------------------------- /src/main/resources/icons/xmake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/main/resources/icons/xmake.svg -------------------------------------------------------------------------------- /src/test/kotlin/io/xmake/project/toolkit/ToolkitManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-idea/HEAD/src/test/kotlin/io/xmake/project/toolkit/ToolkitManagerTest.kt --------------------------------------------------------------------------------