Value stuff compiles/links with lots of placeholder functions

This commit is contained in:
beder
2011-09-07 00:12:24 -05:00
parent 57617cc5cc
commit 74ffe6a61b
8 changed files with 112 additions and 7 deletions

View File

@@ -1,2 +1,5 @@
add_executable(parse parse.cpp)
target_link_libraries(parse yaml-cpp)
add_executable(value value.cpp)
target_link_libraries(value yaml-cpp)

8
util/value.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include "yaml-cpp/value/value.h"
int main()
{
YAML::Value value;
return 0;
}