From 4ab5da75ab854bc82043bb8c044ef9b6d76ef865 Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Thu, 1 Aug 2013 13:27:27 -0700 Subject: [PATCH] cmake: move all headers to include/opensubdiv/ The base include/ directory is too general for general installation. Specifically, "include/version.h" will likely clash with many other projects. Move headers to include/opensubdiv/ to prevent filesystem namespace clashes. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e791b883..6ed32679 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,7 +47,7 @@ if (NOT DEFINED CMAKE_INSTALL_PREFIX) endif() if (NOT DEFINED CMAKE_INCDIR_BASE) - set( CMAKE_INCDIR_BASE include ) + set( CMAKE_INCDIR_BASE include/opensubdiv ) endif() if (NOT DEFINED CMAKE_BINDIR_BASE)