-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code Reorganization #14
base: master
Are you sure you want to change the base?
Conversation
pedroCabrera
commented
Jul 26, 2024
- I reorganized the building output to be included into a package for easy distribution for both windows and linux for all versions using houdini version Env variables.
- Moved samples and otls into the package.
- Added cmakelists.txt and windows_build.bat for easy building in windows.
- Redirected Linux Makefile output to follow the package structure ( only change made to linux build system as i dont work with linux )
- Included flex 1.2 dlls for future work.
@@ -0,0 +1,7 @@ | |||
cd ./build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would be nice to add mkdir -p build
before this (not sure about windows cmd analogue) to ensure build dir existence
@@ -0,0 +1,7 @@ | |||
cd ./build | |||
set HOUDINI_PATH=C:\Program Files\Side Effects Software\Houdini 20.5.278\toolkit\cmake |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HOUDINI_PATH
is a special houdini control env variable. Even though it does not affect anything here, it would be nice to rename this into something houdini does not use, like HOUDINI_CMAKE_PATH
not to confuse the reader, and not to cause problems if someone embeds this script into some testing pipeline