Adding EquisFTIR to a Project

From EQUIS Lab Wiki

Jump to: navigation, search


C++ Steps

  • Get EquisFtir-100301-native.zip from S:\Tabletop and unzip it in some directory
  • Add the EquisFTIR-Core.lib file to the directory of the project solution
  • Add the EquisFTIR-Core.dll to the directory that the project runs in (EX: bin/debug, or bin/release)
  • In Visual Studio, right click on the project, select properties.
  • In the Properties window sidebar, expand Linker, and select Input.
  • Select additional dependencies
  • At the end of the list of line separated additional dependencies, add "EquisFtir-Core.lib"
  • Add the touch.h, input.h and format.h header files to your project.
  • Refer to the the touch.h header file in your code.
  • Add the line "ETSurface* surface = etCreate();" to your code to create an instance of ETSurface
  • ... to be continued