Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 794 Bytes

INSTALL.md

File metadata and controls

40 lines (27 loc) · 794 Bytes

Installing and Compiling with ObjectivelyMVC

Dependencies

GNU Autotools

  1. Do the Autotools dance.
autoreconf -i; ./configure; make; sudo make install
  1. Include the main header file in your source.
#include <ObjectivelyMVC.h>
  1. Compile and link with ObjectivelyMVC.
gcc `pkg-config --cflags --libs ObjectivelyMVC` -o myprogram *.c

Xcode 8

  1. Open the versioned Xcode 8 workspace.
  2. Locate the shared libraries required by the build targets.
  3. Profit

Visual Studio

  1. Open the Visual Studio project file.
  2. Profit.