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

add ifdef to pinproctest.h for WIN32 to use local yaml.h. Adjust notes in markdown.

This commit is contained in:
gstellenberg
2009-10-31 00:28:13 -05:00
parent c7367fc5ee
commit 25471bc59d
2 changed files with 8 additions and 4 deletions

View File

@@ -34,7 +34,11 @@
#include <cmath>
#include "../../include/pinproc.h" // Include libpinproc's header.
#include <fstream>
#include <yaml-cpp/yaml.h>
#if defined(__WIN32__)
#include "yaml.h"
#else
#include <yaml-cpp/yaml.h>
#endif
#include <sys/time.h>
#define kFlippersSection "PRFlippers"