Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. First of all, download any HOOPS Exchange Linux package on our developer zone.

  2. Replace the "include\hoops_license.h" license file by one you can generate here.

  3. Before compiling, it’s required to export the PARASOLID_INSTALL_DIR environment variable.
    The command to execute (be sure to complete it with your Parasolid installation folder first) could be found in the Makefile of the TranslateToPkParts sample (but don't uncomment this line since it has to be run before launchning CMake, otherwise it won't work).

  4. After having successfully compiled (by running the “make“ command), it’s still needed to update the LD_LIBRARY_PATH as follows: "export LD_LIBRARY_PATH=/path_to_parasolid_folder/shared_object:../../../../bin/linux64:$LD_LIBRARY_PATH" (Notice the :$LD_LIBRARY_PATH repetition here to not overwrite any other library paths you may have previously defined).
    If this is not working, then try to remove any possible space in your paths.

  5. The last thing to do is to set up the P_SCHEMA environment variable by running the following command "export P_SCHEMA=/path_to_parasolid_folder/schema". If you forget this one, you'll still be able to generate the log saying that it cannot find the Parasolid schema.

...