Skip to content

Commit b220f41

Browse files
authored
Merge pull request #206 from Unity-Technologies/UNI-23257-sprint21-release
Uni 23257 sprint21 release
2 parents e619d58 + 7a8a904 commit b220f41

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ MESSAGE(STATUS "CMAKE_INSTALL_PREFIX is: " ${CMAKE_INSTALL_PREFIX})
2323

2424
option(CREATE_PACKAGE "Create Package" OFF)
2525
if (NOT DEFINED PACKAGE_VERSION)
26-
set(PACKAGE_VERSION "0.0.9a")
26+
set(PACKAGE_VERSION "0.0.10a")
2727
endif()
2828

2929
if (NOT DEFINED PACKAGE_PATH)
@@ -195,8 +195,7 @@ set_target_properties(unity_tests PROPERTIES SUFFIX ".exe")
195195
# Make install does the right thing in all cases but it's overkill in release.
196196
add_custom_command(
197197
OUTPUT ${PACKAGE_PATH}
198-
${PACKAGE_TARGET}
199-
COMMAND "${CMAKE_COMMAND}" --build . --target install
198+
COMMAND "${CMAKE_COMMAND}" --build . --target install --config Release
200199
COMMAND "${UNITY_EDITOR_PATH}" -batchmode -projectPath ${CMAKE_BINARY_DIR}/tests/UnityTests -exportPackage Assets/FbxSdk ${PACKAGE_PATH} -quit
201200
COMMENT "Creating Unity Package ${PACKAGE_PATH}"
202201
DEPENDS UnityFbxSdkNative

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ mkdir FbxSharpBuild
5858
cd FbxSharpBuild
5959
cmake ../FbxSharp -G"Visual Studio 14 2015 Win64"
6060
cmake --build . --target INSTALL --config Release
61-
cmake --build . --target unitypackage
61+
cmake --build . --target unitypackage --config Release
6262
6363
# run the sample Unity code
6464
"C:/Program Files/Unity/Editor/Unity.exe" -projectpath %cd%/tests/UnityTests

docs/RELEASE_NOTES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#RELEASE NOTES
22

3+
**Version**: 0.0.10a
4+
5+
Added documentation of vector classes.
6+
7+
Added test to check that the FbxSdk DLL cannot be used without the Unity Editor (This is a legal requirement).
8+
9+
Improve build process so it is more robust.
10+
311
**Version**: 0.0.9a
412

513
Set the Doxygen homepage to be README.txt instead of README.md

0 commit comments

Comments
 (0)