This repository has been archived by the owner on Dec 31, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
37 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ | |
*.suo | ||
build | ||
.vs | ||
project/nvtt.sublime-workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,8 +44,8 @@ ENDIF(CMAKE_SYSTEM_NAME STREQUAL "Linux") | |
SET(CPACK_PACKAGE_NAME "nvidia-texture-tools") | ||
SET(CPACK_PACKAGE_VERSION_MAJOR "2") | ||
SET(CPACK_PACKAGE_VERSION_MINOR "1") | ||
SET(CPACK_PACKAGE_VERSION_PATCH "1") | ||
SET(CPACK_PACKAGE_VERSION "2.1.1") | ||
SET(CPACK_PACKAGE_VERSION_PATCH "2") | ||
SET(CPACK_PACKAGE_VERSION "2.1.2") | ||
SET(CPACK_PACKAGE_CONTACT "Ignacio Castaño <[email protected]>") | ||
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Texture processing tools with support for Direct3D 10 and 11 formats.") | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.1.1 | ||
2.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
mkdir dist | ||
|
||
mkdir dist\lib | ||
mkdir dist\lib64 | ||
mkdir dist\bin | ||
mkdir dist\bin64 | ||
mkdir dist\include | ||
mkdir dist\include\nvtt | ||
|
||
copy Release.Win32\bin\nvcompress.exe dist\bin | ||
copy Release.Win32\bin\nvdecompress.exe dist\bin | ||
copy Release.Win32\bin\nvtt.dll dist\bin | ||
copy Release.Win32\bin\nvtt.pdb dist\bin | ||
copy Release.Win32\lib\nvtt.lib dist\lib | ||
|
||
copy Release.x64\bin\nvcompress.exe dist\bin64 | ||
copy Release.x64\bin\nvdecompress.exe dist\bin64 | ||
copy Release.x64\bin\nvtt.dll dist\bin64 | ||
copy Release.x64\bin\nvtt.pdb dist\bin64 | ||
copy Release.x64\lib\nvtt.lib dist\lib64 | ||
|
||
copy Release.Win32\include\nvtt\nvtt.h dist\include\nvtt\nvtt.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters