Skip to content

bstramsek/touch_plus_source_code

 
 

Repository files navigation

#Build instructions:

  1. Install Visual Studio Community 2015

  2. Quit Visual Studio if it is already running, then add the following variables to "Windows Environment Variables" (replace "root_dir" with the path of the cloned repository, e.g. "C:\touch_plus_source_code")

DIRECTSHOW_DIR      root_dir\dependencies\Windows\DirectShow
ETRON_DIR           root_dir\dependencies\Windows\Etron
OPENCV_DIR          root_dir\dependencies\Windows\OpenCV\build\x86\vc12
SFML_DIR      	    root_dir\dependencies\Windows\SFML
LIBJPEG-TURBO_DIR   root_dir\dependencies\Windows\libjpeg-turbo
  1. Start Visual Studio with administrator permissions, then open "root_dir\track_plus_visual_studio\track_plus.sln"

  2. Press CTRL+SHIFT+B to build solution. If solution builds without a hiccup, you're all set. If an error is thrown, double click on the error in "Error List", and it should open up "winnt.h". Locate the following lines:

typedef void *PVOID;
typedef void * POINTER_64 PVOID64;

Add one line, so that they become:

#define POINTER_64 __ptr64
typedef void *PVOID;
typedef void * POINTER_64 PVOID64;

If you couldn't save "winnt.h", restart Visual Studio as administrator and try again. You should be able to build the solution now.

About

Source code for Ractiv Touch+ Software

Resources

License

Unknown and 2 other licenses found

Licenses found

Unknown
LICENSE.md
Unknown
license.txt
Unknown
license.py

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 50.9%
  • C# 20.4%
  • Objective-C 17.5%
  • C 4.9%
  • ActionScript 3.3%
  • JavaScript 2.9%
  • HTML 0.1%