This section describes the build process for Windows and Linux.
To build the C++ API on Windows
To build on Windows, you need at least Microsoft Visual Studio 2015.
cppapi/bin
directory. At the Visual Studio command prompt, run nmake -f Makefile
.
This command creates a file called filtersdk.lib
. You can statically link this into your own binaries in order to use the Filter SDK.
To build the C++ API on Linux
cppapi/bin
directory. Run the appropriate command:
GCC 5
export CXXFLAGS="-std=c++11"
make
GCC 6
make
This command creates a file called filtersdk.a
. You can link this into your own binaries in order to use the Filter SDK.
To build the C++ API on Mac OSX
cppapi/bin
directory.Run the following command:
export CXXFLAGS="-stdlib=libc++ -std=c++11"
Run the following command:
make -f GNUmakefile
|