Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Dec 20, 2024
1 parent 8d10c63 commit 2545f97
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ XMake installed on the system. Available [here](https://github.com/xmake-io/xmak

```
plugins {
id 'org.tboox.gradle-xmake-plugin' version '1.2.1'
id 'org.tboox.gradle-xmake-plugin' version '1.2.2'
}
```

Expand All @@ -70,7 +70,7 @@ buildscript {
}
}
dependencies {
classpath 'org.tboox:gradle-xmake-plugin:1.2.1'
classpath 'org.tboox:gradle-xmake-plugin:1.2.2'
}
repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ xmake-gradle是一个无缝整合xmake的gradle插件。

```
plugins {
id 'org.tboox.gradle-xmake-plugin' version '1.1.8'
id 'org.tboox.gradle-xmake-plugin' version '1.2.2'
}
```

Expand All @@ -70,7 +70,7 @@ buildscript {
}
}
dependencies {
classpath 'org.tboox:gradle-xmake-plugin:1.1.8'
classpath 'org.tboox:gradle-xmake-plugin:1.2.2'
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion gradle-xmake-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
apply plugin: 'groovy'

group = "org.tboox"
version = "1.2.1"
version = "1.2.2"

repositories {
// Use mavenCentral for resolving your dependencies.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function _install_artifacts(targets, opt)
local installdir = opt.installdir
assert(xmake.version():ge("2.9.6"), "please update xmake to >= 2.9.6")
for _, target in ipairs(targets) do
install(target, {installdir = installdir, libdir = arch})
install(target, {installdir = installdir, libdir = arch, includedir = "include"})
end
end

Expand Down Expand Up @@ -151,7 +151,7 @@ function _clean_artifacts(targets, opt)
local installdir = opt.installdir
assert(xmake.version():ge("2.9.6"), "please update xmake to >= 2.9.6")
for _, target in ipairs(targets) do
uninstall(target, {installdir = installdir, libdir = arch})
uninstall(target, {installdir = installdir, libdir = arch, includedir = "include"})
end

-- clean cxxstl
Expand Down
2 changes: 1 addition & 1 deletion nativelib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.tboox.gradle-xmake-plugin' version '1.2.1'
id 'org.tboox.gradle-xmake-plugin' version '1.2.2'
}
apply plugin: 'com.android.library'
//apply plugin: "org.tboox.gradle-xmake-plugin"
Expand Down

0 comments on commit 2545f97

Please sign in to comment.