1# the name of the target operating system
2set(CMAKE_SYSTEM_NAME "Darwin")
3set(ARCH   "amd64")
4
5# Commands for running various external tools
6set(CC "gcc")
7set(BROWSER "open")
8set(VRMLVIEW "open")
9set(MPICC "mpicc.gcc")
10set(MPIRUN "mpirun")
11set(PGPLOT "pgxwin_server")
12set(GNUPLOT "gnuplot")
13set(PERL "/usr/bin/perl")
14
15# Plotting options
16
17set(PLOTTER "PGPLOT")
18set(PGDEV "/xserv")
19set(GNUDEV "x11")
20
21# Suffix for executables
22set(EXE "out")
23
24