alecjacobson / geometry-processing-introduction

Introductory assignment for Geometry Processing course
Mozilla Public License 2.0
116 stars 131 forks source link

make error after running cmake #6

Closed AdamSturge closed 7 years ago

AdamSturge commented 7 years ago

The steps for setting up assignment 0 state to run cmake .. then make. I've managed to get cmake to run but make gives me an error. Having never used these tools before I assume there's something simple I'm missing. capture

mtao commented 7 years ago

CMake has made a visual studio project so you can load a visual studio project in that directory. If you really want to use make on windows you have to set the generator to "Unix Makefiles":

cmake .. -G"Unix Makefiles"