Skip to content
This repository was archived by the owner on Mar 15, 2024. It is now read-only.

Commit e1e5c1a

Browse files
committed
Updated Maven / Gradle settings.
1 parent 9a86961 commit e1e5c1a

File tree

3 files changed

+63
-1
lines changed

3 files changed

+63
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
compile "com.badlogicgames.gdx:gdx:${gdxVersion}"
99
}
1010
compile "com.google.code.findbugs:jsr305:3.0.1"
11-
compile "org.slf4j:slf4j-api:1.7.13"
11+
compile "org.slf4j:slf4j-api:${slf4jVersion}"
1212
}
1313

1414
sourceCompatibility = 1.8

src/main/native/jni/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ cmake_minimum_required(VERSION 2.8)
77
get_filename_component(FIPS_ROOT_DIR "../fips" ABSOLUTE)
88
include("${FIPS_ROOT_DIR}/cmake/fips.cmake")
99

10+
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.7")
11+
1012
fips_setup()
1113
fips_project(gdx-snippets-native)
1214

src/main/native/jni/pom.xml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,66 @@
1111
<name>libGDX lazy snippets - native libraries</name>
1212

1313
<profiles>
14+
<profile>
15+
<id>win64-vs2015</id>
16+
<build>
17+
<plugins>
18+
<plugin>
19+
<groupId>com.coderplus.maven.plugins</groupId>
20+
<artifactId>copy-rename-maven-plugin</artifactId>
21+
<version>1.0</version>
22+
<executions>
23+
<execution>
24+
<id>copy-file</id>
25+
<phase>validate</phase>
26+
<goals>
27+
<goal>copy</goal>
28+
</goals>
29+
<configuration>
30+
<fileSets>
31+
<fileSet>
32+
<sourceFile>../fips-deploy/gdx-snippets-native/win64-vs2015-release/gdx-snippets-native.dll</sourceFile>
33+
<destinationFile>../../resources/gdx-snippets64.dll</destinationFile>
34+
</fileSet>
35+
</fileSets>
36+
</configuration>
37+
</execution>
38+
</executions>
39+
</plugin>
40+
</plugins>
41+
</build>
42+
</profile>
43+
44+
<profile>
45+
<id>win32-vs2015</id>
46+
<build>
47+
<plugins>
48+
<plugin>
49+
<groupId>com.coderplus.maven.plugins</groupId>
50+
<artifactId>copy-rename-maven-plugin</artifactId>
51+
<version>1.0</version>
52+
<executions>
53+
<execution>
54+
<id>copy-file</id>
55+
<phase>validate</phase>
56+
<goals>
57+
<goal>copy</goal>
58+
</goals>
59+
<configuration>
60+
<fileSets>
61+
<fileSet>
62+
<sourceFile>../fips-deploy/gdx-snippets-native/win32-vs2015-release/gdx-snippets-native.dll</sourceFile>
63+
<destinationFile>../../resources/gdx-snippets.dll</destinationFile>
64+
</fileSet>
65+
</fileSets>
66+
</configuration>
67+
</execution>
68+
</executions>
69+
</plugin>
70+
</plugins>
71+
</build>
72+
</profile>
73+
1474
<profile>
1575
<id>win64-vs2013</id>
1676
<build>

0 commit comments

Comments
 (0)