Hey,
I am very new to C++ and tried to develop a simple console application in Visual Studio. I want to display the version of Libobs in the console.
But it seems that I didn't include libobs correctly, so I got the Error "LNK2019". How should I include the lib correctly in Visual Studio?
Thank's for Your help :)
I am very new to C++ and tried to develop a simple console application in Visual Studio. I want to display the version of Libobs in the console.
Code:
#include "stdafx.h"
#include <iostream>
#include "./libobs/obs.h"
using namespace std;
int main() {
obs_startup("en-US", NULL, NULL);
cout << obs_get_version_string;
return 0;
}
But it seems that I didn't include libobs correctly, so I got the Error "LNK2019". How should I include the lib correctly in Visual Studio?
Thank's for Your help :)