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

This commit is contained in:
Jesse Beder
2008-07-14 05:08:46 +00:00
parent f3a2c8497a
commit 2e2c489e29
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;