From e8e5d4bc4054f22d58e181d0bdc400fdb412774d Mon Sep 17 00:00:00 2001 From: Jesse Beder Date: Thu, 20 Oct 2011 21:50:47 -0500 Subject: [PATCH] Fixed typo in computing private headers (no effect on the build, just for the project files) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index eb6b339..60f252f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -80,7 +80,7 @@ file(GLOB new_api_public_headers ) file(GLOB old_api_public_headers "include/yaml-cpp/old-api/[a-zA-Z]*.h") -file(GLOB common_private_headers "include/yaml-cpp/[a-zA-Z]*.h") +file(GLOB common_private_headers "src/[a-zA-Z]*.h") file(GLOB new_api_private_headers "src/node/[a-zA-Z]*.h") file(GLOB old_api_private_headers "src/old-api/[a-zA-Z]*.h")