forked from robblau/tk-katana
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from TheFoundryVisionmongers/feature/adding_win…
…dows_build Fixed up windows Startup example and build script
- Loading branch information
Showing
9 changed files
with
178 additions
and
246 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
*.pyc | ||
.vscode | ||
*.dll | ||
*.so | ||
src/build | ||
|
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
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,20 @@ | ||
|
||
rm -rf build && mkdir build && cd build | ||
|
||
SET TK_KATANA=C:/workspace/shotgun/tk-katana | ||
SET KATANA_LOCATION="C:/Program Files/Foundry/Katana3.2dev" | ||
SET INSTALL_PREFIX=%TK_KATANA%/resources/Katana/ShotgunAsset | ||
SET KATANA_PYTHON=%KATANA_LOCATION%/bin/include/include/ | ||
SET PYTHON_LIB="C:\Program Files\Foundry\Katana3.2dev\bin\python27.lib" | ||
:: Pybind required for importomatic version changing. | ||
SET PYBIND_INCLUDE_DIR=C:/Users/james.pedlingham/Documents/Git/pybind11/include | ||
|
||
cmake .. ^ | ||
-DCMAKE_GENERATOR_PLATFORM=x64 ^ | ||
-DPYBIND_INCLUDE_DIR=%PYBIND_INCLUDE_DIR% ^ | ||
-DPYTHON_INCLUDE_DIR=%KATANA_PYTHON% ^ | ||
-DKATANA_LOCATION=%KATANA_LOCATION% ^ | ||
-DPYTHON_LIB=%PYTHON_LIB% ^ | ||
-DCMAKE_INSTALL_PREFIX=%INSTALL_PREFIX% | ||
cmake --build . --target install | ||
|
Oops, something went wrong.