Skip to content

Compile ECS354

Andrea edited this page Sep 10, 2015 · 3 revisions

This is how to compile the project in the lab. All libraries have been pre-installed for you.

Compiling and running in QtCreator

~: git clone https://github.com/luckysama/icg.git
~: cd icg 
~/icg: open -a "Qt\ Creator.app" CMakeLists.txt
  • Run the CMake UI (will be w/o errors)
  • Build (Hammer shaped icon)
  • Run (Green triangle icon)

Compiling and running from the command line

~: git clone https://github.com/luckysama/icg.git
~: mkdir icg-build
~: cd icg-build
~/icg-build: cmake ../icg
~/icg-build: make
~/icg-build: ../icg/raytrace/raytrace 
Clone this wiki locally