dilevin / CSC417-a1-mass-spring-1d

Assignment 1 on one-dimensional mass spring systems for CSC2549, at the University of Toronto
14 stars 14 forks source link

Missing headers on stock Ubuntu 18.04 with nvidia drivers 430.50 #1

Open AlexTessier opened 4 years ago

AlexTessier commented 4 years ago

This isn't an issue - rather help for others seeking to do a debug build on a stock install of Ubuntu 18.04 with nvidia drivers. You have to make sure the OpenGL header files are installed as well as a handfull of other dependencies or you cmake with -DCMAKE_BUILD_TYPE=Debug will fail. I imagine if you use the CDF machines, this is a non-issue as all the packages are most likely installed there.

Those packages are: mesa-comon-dev libgl1-mesa-dev libglu1-mesa-dev x11proto-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev

dilevin commented 4 years ago

Thanks for pointing this out !