Skip to content

Commit

Permalink
Updating readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
kattkieru committed Jun 9, 2021
1 parent 8003bb4 commit 94da86a
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,20 @@ The source is released under the BSD license. If you use the source for anythin

### Latest Update

The initial release had issues building because I hastily stripped the licensing module from the tree. I've fixed that. I've also renamed the MEL file to cie_tradigitools.mel for sourcing; the 2013 file is still there for reference (and, if I recall, no different from the one in 2014), but moving forwards I'll only be supporting Maya 2014 and
above.

My intent is to make installers for binary builds so that it's easier for people to use the tool.

I've noticed that there's an odd issue linking on Linux (in my case, CentOS 6.2). I'm looking into it, but if you have
any insight I'd appreciate hints.
Maya 2022 is now supported. There are some deprecation warnings, so I may
go in and silence them by moving to newer API calls at some point. This would
mean dropping support for earlier versions of Maya.


### Building

The current build uses [scons](http://www.scons.org). Any recent version of scons should do.

You'll need to modify the SConscript to fit your build environment, particularly the _MAYA\_DIRECTORY and INSTALL\_DIRECTORY_ variables.
The current build uses [cmake](http://www.cmake.org). I recommend version 3.17 or above.

If you're using bash, cd into the source tree and type:
Builds use the regular cmake dance:

> export MAYA_VER=2014; scons -j [number of cores]
> mkdir build && pushd build
> cmake -DMAYA_VERSION=2022 ..
> cmake --build . --config Release --target install
This will choose the version of Maya you've specified, and build the plugin.

Expand Down

0 comments on commit 94da86a

Please sign in to comment.