1
0
mirror of https://github.com/preble/libpinproc synced 2026-02-24 18:25:23 +01:00

cmake: update minimum required version to 2.8.1

This is a reasonable requirement.  It allows removal of two OLD policies
and gives us consistent behavior for relative link directories.
This commit is contained in:
Tom Collins
2020-06-26 08:26:06 -07:00
committed by Gerry Stellenberg
parent caa09f6473
commit 624f7780a1
2 changed files with 6 additions and 15 deletions

View File

@@ -61,9 +61,9 @@ Make sure you have cmake installed for i686 (MinGW32) or x86_64 (MinGW64): `pacm
cd libpinproc
mkdir build; cd build
cmake .. -A Win32
# configure paths for td2xxx; use `cmake .. -L` to list configured options
# configure paths for ftd2xxx; use `cmake .. -L` to list configured options
cmake .. -D EXTRA_INC="../ftd2xx"
cmake .. -D EXTRA_LINK="../../ftd2xx/i386"
cmake .. -D EXTRA_LINK="../ftd2xx/i386"
Then open PINPROC.sln in Visual Studio, switch to the Debug or Release configuration and perform ALL_BUILD. It will place the libary and sample programs in `build/Debug` and `build/Release`.