Set the yaml-reader project to link to the yamlcpp library.

This commit is contained in:
beder
2008-07-14 05:08:46 +00:00
parent 11eb40e636
commit 2ffc7dc6ac
2 changed files with 8 additions and 144 deletions

View File

@@ -3,6 +3,12 @@
#include <fstream>
#include <iostream>
#ifdef _DEBUG
#pragma comment(lib, "yamlcppd.lib")
#else
#pragma comment(lib, "yamlcpp.lib")
#endif
struct Vec3 {
float x, y, z;