Windows
=======
Header files are installed to C:\<Program files (x86)>\SR Research\EyeLink\includes\eyelink
Header file list: edf.h, edftypes.h, edf_data.h

32 bit Library files are installed to C:\<Program files (x86)>\SR Research\EyeLink\libs
32 bit Library file list: edfapi.lib

64 bit Library files are installed to C:\<Program files (x86)>\SR Research\EyeLink\libs\x64
32 bit Library file list: edfapix64.lib

To compile CExample use Microsoft Visual Studio 2015 or newer and open the edf2asc.sln 

To compile Java example, use JDK 16 or later
javac.exe -cp .;../lib/java/edfapi.jar EDF2ASC.java
to run, 
java.exe -cp .;../lib/java/edfapi.jar EDF2ASC TEST.EDF

Linux
=======
Header files are installed to /usr/include/EyeLink
Header file list: edf.h edftypes.h edf_data.h
Library files are installed to /usr/lib/x86_64-linux-gnu
Library file list: libedffapi.a libedfapi.so
Executable files are installed to /usr/bin
Executable file list: edf2asc, edf2asc_s

The edf2asc is statically linked and the edf2asc_s is dynamically linked.
Documentation and samples are installed to /usr/share/EyeLink/EDF_Access_API

To compile C Example:
cd to /usr/share/EyeLink/EDF_Access_API/CExample or copy /usr/share/EyeLink/EDF_Access_API/CExample to some other convenient folder e.g., Desktop
cd to CExample and execute the following command.
make -f Makefile.linux



macOS
=======
Framework name: edfapi.framework
Framework is installed to /Library/Frameworks
Header files are installed to /Library/Frameworks/edfapi.framework/Headers
Header file list: edf.h, edftypes.h, edf_data.h
Executable files are installed to /usr/local/bin
Executable file list: edf2asc
edf2asc is statically linkded and does not rely on edfapi.framework.

Documentation and samples are installed to /Applications/EyeLink/EDF_Access_API

To compile C Example:
cd to /Applications/EyeLink/EDF_Access_API/CExample or copy /Applications/EyeLink/EDF_Access_API/CExample to some other convenient folder e.g., Desktop
and open up the edf2asc.xcodeproj
