13 | | The INCLUDE_PATH for C and C++ should include {{{$MUSCLE_HOME/include}}}, and the library path should include {{{$MUSCLE_HOME/lib}}}, specifically the {{{$MUSCLE_HOME/lib/libmuscle2.so}}} or {{{$MUSCLE_HOME/lib/libmuscle2.dylib}}} (depending on the operating system). |
| 13 | The INCLUDE_PATH for C and C++ should include {{{$MUSCLE_HOME/include}}}, and the executables should be linked with the {{{$MUSCLE_HOME/lib/libmuscle2.so}}} or {{{$MUSCLE_HOME/lib/libmuscle2.dylib}}} library (depending on the operating system). To update add any other libraries to the dynamic library path, modify the configuration file as follows: |
| 14 | {{{ |
| 15 | m = Muscle.LAST |
| 16 | m.add_libpath "path/to/dependency1/lib" |
| 17 | m.add_libpath "path/to/dependency2/lib" |
| 18 | }}} |