Changes between Version 1 and Version 2 of Compiling

Show
Ignore:
Timestamp:
12/03/12 15:58:35 (12 years ago)
Author:
jorisborgdorff
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Compiling

    v1 v2  
    1111}}} 
    1212 
    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). 
     13The 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{{{ 
     15m = Muscle.LAST 
     16m.add_libpath "path/to/dependency1/lib" 
     17m.add_libpath "path/to/dependency2/lib" 
     18}}}