From 4b63c343057b2ee9bdb3c26d0ca0217d35a9ab43 Mon Sep 17 00:00:00 2001 From: David Williams Date: Fri, 28 Sep 2012 13:54:27 +0200 Subject: [PATCH] Brought the manual and API docs together under the same heading in Visual Studio. --- documentation/CMakeLists.txt | 2 +- examples/Basic/CMakeLists.txt | 2 +- examples/OpenGL/CMakeLists.txt | 2 +- examples/Paging/CMakeLists.txt | 2 +- examples/SmoothLOD/CMakeLists.txt | 2 +- library/CMakeLists.txt | 2 +- library/PolyVoxCore/CMakeLists.txt | 2 +- library/PolyVoxUtil/CMakeLists.txt | 2 +- library/bindings/CMakeLists.txt | 2 +- tests/CMakeLists.txt | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/documentation/CMakeLists.txt b/documentation/CMakeLists.txt index fc936b4f..dfe05a96 100644 --- a/documentation/CMakeLists.txt +++ b/documentation/CMakeLists.txt @@ -36,7 +36,7 @@ if(SPHINXBUILD_EXECUTABLE) COMMENT "Building PolyVox manual" ) add_dependencies(manual doc) - SET_PROPERTY(TARGET manual PROPERTY FOLDER "documentation") + SET_PROPERTY(TARGET manual PROPERTY FOLDER "Documentation/Manual") else() if(NOT SPHINXBUILD_EXECUTABLE) message(STATUS "`sphinx-build` was not found. Try setting SPHINXBUILD_EXECUTABLE to its location.") diff --git a/examples/Basic/CMakeLists.txt b/examples/Basic/CMakeLists.txt index 4f0e03f8..8c09db66 100644 --- a/examples/Basic/CMakeLists.txt +++ b/examples/Basic/CMakeLists.txt @@ -59,7 +59,7 @@ IF(MSVC) SET_TARGET_PROPERTIES(BasicExample PROPERTIES COMPILE_FLAGS "/W4 /wd4127") ENDIF(MSVC) TARGET_LINK_LIBRARIES(BasicExample ${QT_LIBRARIES} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} PolyVoxCore) -SET_PROPERTY(TARGET BasicExample PROPERTY FOLDER "examples/Basic") +SET_PROPERTY(TARGET BasicExample PROPERTY FOLDER "Examples/Basic") #Install - Only install the example in Windows IF(WIN32) diff --git a/examples/OpenGL/CMakeLists.txt b/examples/OpenGL/CMakeLists.txt index b9d32acb..a67c6f88 100644 --- a/examples/OpenGL/CMakeLists.txt +++ b/examples/OpenGL/CMakeLists.txt @@ -65,7 +65,7 @@ IF(MSVC) SET_TARGET_PROPERTIES(OpenGLExample PROPERTIES COMPILE_FLAGS "/W4 /wd4127") ENDIF(MSVC) TARGET_LINK_LIBRARIES(OpenGLExample ${QT_LIBRARIES} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} PolyVoxCore) -SET_PROPERTY(TARGET OpenGLExample PROPERTY FOLDER "examples/OpenGL") +SET_PROPERTY(TARGET OpenGLExample PROPERTY FOLDER "Examples/OpenGL") #Install - Only install the example in Windows IF(WIN32) diff --git a/examples/Paging/CMakeLists.txt b/examples/Paging/CMakeLists.txt index 7016d798..2a390919 100644 --- a/examples/Paging/CMakeLists.txt +++ b/examples/Paging/CMakeLists.txt @@ -61,7 +61,7 @@ IF(MSVC) SET_TARGET_PROPERTIES(PagingExample PROPERTIES COMPILE_FLAGS "/W4 /wd4127") ENDIF(MSVC) TARGET_LINK_LIBRARIES(PagingExample ${QT_LIBRARIES} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} PolyVoxCore) -SET_PROPERTY(TARGET PagingExample PROPERTY FOLDER "examples/Paging") +SET_PROPERTY(TARGET PagingExample PROPERTY FOLDER "Examples/Paging") #Install - Only install the example in Windows IF(WIN32) diff --git a/examples/SmoothLOD/CMakeLists.txt b/examples/SmoothLOD/CMakeLists.txt index 4a1f7a7f..21da7bc7 100644 --- a/examples/SmoothLOD/CMakeLists.txt +++ b/examples/SmoothLOD/CMakeLists.txt @@ -59,7 +59,7 @@ IF(MSVC) SET_TARGET_PROPERTIES(SmoothLODExample PROPERTIES COMPILE_FLAGS "/W4 /wd4127") #All warnings ENDIF(MSVC) TARGET_LINK_LIBRARIES(SmoothLODExample ${QT_LIBRARIES} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} PolyVoxCore) -SET_PROPERTY(TARGET SmoothLODExample PROPERTY FOLDER "examples/SmoothLOD") +SET_PROPERTY(TARGET SmoothLODExample PROPERTY FOLDER "Examples/SmoothLOD") #Install - Only install the example in Windows IF(WIN32) diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt index aa1f9db3..617f761d 100644 --- a/library/CMakeLists.txt +++ b/library/CMakeLists.txt @@ -60,7 +60,7 @@ if(DOXYGEN_FOUND) VERBATIM ) set_target_properties(doc PROPERTIES PROJECT_LABEL "Documentation") #Set label seen in IDE - set_property(TARGET doc PROPERTY FOLDER "library/doc") + set_property(TARGET doc PROPERTY FOLDER "Documentation/API Reference") #If we found qcollectiongenerator then do more processing if(QT_QCOLLECTIONGENERATOR_EXECUTABLE) diff --git a/library/PolyVoxCore/CMakeLists.txt b/library/PolyVoxCore/CMakeLists.txt index f6f58a57..4e13cde0 100644 --- a/library/PolyVoxCore/CMakeLists.txt +++ b/library/PolyVoxCore/CMakeLists.txt @@ -144,7 +144,7 @@ IF(LIBRARY_TYPE STREQUAL "DYNAMIC") ADD_LIBRARY(PolyVoxCore SHARED ${CORE_SRC_FILES} ${CORE_INC_FILES} ${IMPL_SRC_FILES} ${IMPL_INC_FILES}) SET_TARGET_PROPERTIES(PolyVoxCore PROPERTIES COMPILE_FLAGS "-DPOLYVOX_SHARED_EXPORTS") ENDIF() -SET_PROPERTY(TARGET PolyVoxCore PROPERTY FOLDER "library/PolyVoxCore") +SET_PROPERTY(TARGET PolyVoxCore PROPERTY FOLDER "Library/PolyVoxCore") SET_TARGET_PROPERTIES(PolyVoxCore PROPERTIES VERSION ${POLYVOX_VERSION} SOVERSION ${POLYVOX_VERSION_MAJOR}) IF(MSVC) diff --git a/library/PolyVoxUtil/CMakeLists.txt b/library/PolyVoxUtil/CMakeLists.txt index db226bca..bff55765 100644 --- a/library/PolyVoxUtil/CMakeLists.txt +++ b/library/PolyVoxUtil/CMakeLists.txt @@ -61,7 +61,7 @@ IF(LIBRARY_TYPE STREQUAL "DYNAMIC") ADD_LIBRARY(PolyVoxUtil SHARED ${UTIL_SRC_FILES} ${UTIL_INC_FILES}) SET_TARGET_PROPERTIES(PolyVoxUtil PROPERTIES COMPILE_FLAGS "-DPOLYVOX_SHARED_EXPORTS") ENDIF() -SET_PROPERTY(TARGET PolyVoxUtil PROPERTY FOLDER "library/PolyVoxUtil") +SET_PROPERTY(TARGET PolyVoxUtil PROPERTY FOLDER "Library/PolyVoxUtil") TARGET_LINK_LIBRARIES(PolyVoxUtil PolyVoxCore) SET_TARGET_PROPERTIES(PolyVoxUtil PROPERTIES VERSION ${POLYVOX_VERSION} SOVERSION ${POLYVOX_VERSION_MAJOR}) diff --git a/library/bindings/CMakeLists.txt b/library/bindings/CMakeLists.txt index 98c2a408..a4a29ced 100644 --- a/library/bindings/CMakeLists.txt +++ b/library/bindings/CMakeLists.txt @@ -46,7 +46,7 @@ if(ENABLE_BINDINGS) swig_add_module(PolyVoxCore python PolyVoxCore.i) swig_link_libraries(PolyVoxCore ${PYTHON_LIBRARIES} PolyVoxCore) #set_target_properties(${SWIG_MODULE_PolyVoxCore_REAL_NAME} PROPERTIES SUFFIX ".pyd") - SET_PROPERTY(TARGET ${SWIG_MODULE_PolyVoxCore_REAL_NAME} PROPERTY FOLDER "library/bindings") + SET_PROPERTY(TARGET ${SWIG_MODULE_PolyVoxCore_REAL_NAME} PROPERTY FOLDER "Library/Bindings") else() set(BUILD_BINDINGS OFF CACHE BOOL "Will the bindings be built" FORCE) endif() diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index f67010d2..c10e9f9c 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -36,7 +36,7 @@ MACRO(CREATE_TEST headerfile sourcefile executablename) ELSE(WIN32) SET(LATEST_TEST ${CMAKE_CURRENT_BINARY_DIR}/${executablename}) ENDIF(WIN32) - SET_PROPERTY(TARGET ${executablename} PROPERTY FOLDER "tests") + SET_PROPERTY(TARGET ${executablename} PROPERTY FOLDER "Tests") ENDMACRO(CREATE_TEST) IF(NOT QT_QTTEST_FOUND)