This project uses cmake
and requires version 3.7
$ brew install cmake
$ mkdir Xcode
$ cd Xcode
$ cmake .. -GXcode
Open the Xcode project and run the SimpleCompiler
Scheme
$ apt-get purge cmake
$ wget https://cmake.org/files/v3.8/cmake-3.8.0-Linux-x86_64.tar.gz
$ tar xzf cmake-3.8.0-Linux-x86_64.tar.gz
$ cd cmake-3.8.0-Linux-x86_64
$ sudo cp -r bin /usr/local/
$ sudo cp -r doc /usr/local/share/
$ sudo cp -r man /usr/local/share/
$ sudo cp -r share /usr/local/
$ cd ..
$ rm -Rf cmake-3.8.0-Linux-x86_64
$ rm cmake-3.8.0-Linux-x86_64.tar.gz
$ cmake --version
$ mkdir Make
$ cd Make
$ cmake ..
$ make
$ SimpleCompiler <filename>
$ SimpleCompiler test
TODO: Need to figure out how install goes on Windows
Windows installer can be found at https://cmake.org/download/
?
Open Visual Studio Project and run