forked from thefiddler/opentk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInstructions.txt
30 lines (17 loc) · 1016 Bytes
/
Instructions.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
=== Installation ===
OpenTK does not require installation. Simply decompress the archive to a folder of your choice.
=== Usage ===
Three simple steps:
1. copy "OpenTK.dll" and "OpenTK.dll.config" to your project folder. These can be found under Binaries/OpenTK/Release/
2. add "OpenTK.dll" to your project references.
(Right-click "References" -> "Add Reference" -> "Browse" and locate "OpenTK.dll")
3. set "OpenTK.dll.config" to be copied to your output directory.
(Right-click "OpenTK.dll.config" -> "Properties" and set "Copy to Output Directory" to "Copy Always".)
For more details, refer to http://www.opentk.com/doc
=== Build instructions ===
Use OpenTK.sln to build the library. You can use Visual Studio 2010+, SharpDevelop 3.0+, MonoDevelop 2.0+ or Xamarin Studio.
You can also build from the commandline using:
msbuild OpenTK.sln /p:Configuration=Release
- or -
xbuild OpenTK.sln /p:Configuration=Release
The resulting binaries will be placed under the Binaries/OpenTK/[Release|Debug] folders.