This repository was archived by the owner on Mar 15, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +63
-1
lines changed Expand file tree Collapse file tree 3 files changed +63
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ dependencies {
8
8
compile " com.badlogicgames.gdx:gdx:${ gdxVersion} "
9
9
}
10
10
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 } "
12
12
}
13
13
14
14
sourceCompatibility = 1.8
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ cmake_minimum_required(VERSION 2.8)
7
7
get_filename_component (FIPS_ROOT_DIR "../fips" ABSOLUTE )
8
8
include ("${FIPS_ROOT_DIR} /cmake/fips.cmake" )
9
9
10
+ set (CMAKE_OSX_DEPLOYMENT_TARGET "10.7" )
11
+
10
12
fips_setup ()
11
13
fips_project (gdx-snippets-native )
12
14
Original file line number Diff line number Diff line change 11
11
<name >libGDX lazy snippets - native libraries</name >
12
12
13
13
<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
+
14
74
<profile >
15
75
<id >win64-vs2013</id >
16
76
<build >
You can’t perform that action at this time.
0 commit comments