First time here? Check out the Help page!
1 | initial version |
To answer on your comment on the original question about building from source.
In ccmake (or whatever it is you use to configure), did you enable the "BUILD_PAT" option which is off by default (see here)? As far as slowness, make sure you set CMAKE_BUILD_TYPE=Release
.
There's this section for APPLE
here that you may want to look at, might need something similar for other UNIX type. (you could try changing IF APPLE
by IF UNIX
for starters, but it might need tweaking.
So I'd say:
IF UNIX
That being said, I'm sure you can build PAT directly from the Github repo OpenStudio-PAT, see wiki.
2 | No.2 Revision |
To answer on your comment on the original question about building from source.
In ccmake (or whatever it is you use to configure), did you enable the "BUILD_PAT" option which is off by default (see here)? As far as slowness, make sure you set CMAKE_BUILD_TYPE=Release
.
There's this section for APPLE
here that you may want to look at, might need something similar for other UNIX type. (you could try changing IF APPLE
by IF UNIX
for starters, but it might need tweaking.
So I'd say:
IF UNIX
That being said, I'm sure you can build PAT directly from the Github repo OpenStudio-PAT, see wiki.