Reputation: 331
What is the equivalent syntax to write the below in premake?
#pragma comment(lib, "opengl32.lib") #pragma comment(lib, "glu32.lib")
Upvotes: 0
Views: 417
Just use:
links { "opengl32.lib", "glu32.lib" }
Thank you @dewaffled.