Skip to content

Latest commit

 

History

History
46 lines (27 loc) · 1.69 KB

BUILDING.md

File metadata and controls

46 lines (27 loc) · 1.69 KB

Building from source

  1. (NOTE: If you already have a cloned copy of openFrameworks you may skip this step). Clone openFrameworks:

     git clone https://github.com/openFrameworks/openFrameworks
     git checkout master
    
  2. Clone the ofSketch repo into your OF_ROOT/apps folder, making sure that the ofSketchApp/ folder inside of ofSketch/ is two directories below your openFrameworks distribution:

     git clone https://github.com/olab-io/ofSketch.git
     cd ofSketch
    
  3. Run the init repo script. This will download and install a trimmed down version of the latest oF release in the bin/data folder of your ofSketch build:

     ./scripts/init_repo.sh
    
  4. Clone the ofxAddon dependencies. This script will attempt to clone the required addons and then pull the latest changes. If you already have these addons, make sure that any of your changes are saved:

     ./scripts/clone_addons.sh
    
  5. Compile ofSketch:

     cd ofSketchApp
     make && make run
    

Note: OSX users may use the Xcode project instead of building from the command line in step 5.

Info

Building ofSketch from source requires openFrameworks master branch and the following addons:

For more information, see the ARCHITECTURE.md document in this repository.