Don't like ads? PRO users don't see any ads ;-)
Guest

Ogre build Command

By: a guest on Apr 14th, 2012  |  syntax: Bash  |  size: 0.28 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #!/bin/bash
  2. g++     -Wall \
  3.         -std=c++0x \
  4.         \
  5.         -Iinclude \
  6.         -I/usr/local/include/OGRE \
  7.         -I/usr/include/OIS  \
  8.         -I/usr/local/include/CEGUI \
  9.         \
  10.         -L/usr/local/lib/OGRE \
  11.         -L/usr/local/lib \
  12.         \
  13.         -lOgreMain \
  14.         -lOIS \
  15.         \
  16.         -o bin/TradeEmpires \
  17.         \
  18.         src/Client.cpp \
  19.         src/main.cpp