diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2017-12-05 02:38:15 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2017-12-05 02:38:15 +0000 |
| commit | e1a00408e79991c439e15e461cb0622e44f7a704 (patch) | |
| tree | cac81617d460957231e78315e3c83fdc00bf9c8d | |
| parent | Added cmake files (diff) | |
| download | DiligentTools-e1a00408e79991c439e15e461cb0622e44f7a704.tar.gz DiligentTools-e1a00408e79991c439e15e461cb0622e44f7a704.zip | |
CMake: Added grouping of projects in VS solution
| -rw-r--r-- | External/libjpeg-9a/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | External/libtiff-4.0.3/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | External/lpng-1.6.17/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | External/lua-5.2.3/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | External/zlib-1.2.8/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | RenderScript/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | TextureLoader/CMakeLists.txt | 6 |
7 files changed, 30 insertions, 2 deletions
diff --git a/External/libjpeg-9a/CMakeLists.txt b/External/libjpeg-9a/CMakeLists.txt index a338f91..151d4f3 100644 --- a/External/libjpeg-9a/CMakeLists.txt +++ b/External/libjpeg-9a/CMakeLists.txt @@ -77,3 +77,7 @@ target_link_libraries(LibJpeg PRIVATE BuildSettings) source_group("source" FILES ${SOURCE}) source_group("include" FILES ${INCLUDE}) + +set_target_properties(LibJpeg PROPERTIES + FOLDER Tools/External +)
\ No newline at end of file diff --git a/External/libtiff-4.0.3/CMakeLists.txt b/External/libtiff-4.0.3/CMakeLists.txt index 0d43c1a..6926acd 100644 --- a/External/libtiff-4.0.3/CMakeLists.txt +++ b/External/libtiff-4.0.3/CMakeLists.txt @@ -89,3 +89,7 @@ target_include_directories(LibTiff source_group("source" FILES ${SOURCE}) source_group("include" FILES ${INCLUDE}) + +set_target_properties(LibTiff PROPERTIES + FOLDER Tools/External +)
\ No newline at end of file diff --git a/External/lpng-1.6.17/CMakeLists.txt b/External/lpng-1.6.17/CMakeLists.txt index a998821..e8eb216 100644 --- a/External/lpng-1.6.17/CMakeLists.txt +++ b/External/lpng-1.6.17/CMakeLists.txt @@ -51,3 +51,7 @@ PUBLIC source_group("source" FILES ${SOURCE}) source_group("include" FILES ${INCLUDE}) + +set_target_properties(LibPng PROPERTIES + FOLDER Tools/External +)
\ No newline at end of file diff --git a/External/lua-5.2.3/CMakeLists.txt b/External/lua-5.2.3/CMakeLists.txt index ffbf82d..c126b50 100644 --- a/External/lua-5.2.3/CMakeLists.txt +++ b/External/lua-5.2.3/CMakeLists.txt @@ -87,3 +87,7 @@ endif() source_group("source" FILES ${SOURCE}) source_group("include" FILES ${INCLUDE}) + +set_target_properties(Lua PROPERTIES + FOLDER Tools/External +)
\ No newline at end of file diff --git a/External/zlib-1.2.8/CMakeLists.txt b/External/zlib-1.2.8/CMakeLists.txt index 84d1c3c..938295e 100644 --- a/External/zlib-1.2.8/CMakeLists.txt +++ b/External/zlib-1.2.8/CMakeLists.txt @@ -48,3 +48,7 @@ endif() source_group("source" FILES ${SOURCE}) source_group("include" FILES ${INCLUDE}) + +set_target_properties(ZLib PROPERTIES + FOLDER Tools/External +)
\ No newline at end of file diff --git a/RenderScript/CMakeLists.txt b/RenderScript/CMakeLists.txt index 0eaa59d..c42c0ca 100644 --- a/RenderScript/CMakeLists.txt +++ b/RenderScript/CMakeLists.txt @@ -75,4 +75,8 @@ PUBLIC source_group("source" FILES ${SOURCE}) source_group("include" FILES ${INCLUDE}) -target_link_libraries(RenderScript PRIVATE BuildSettings GraphicsEngine Lua Common PlatformInterface GraphicsTools)
\ No newline at end of file +target_link_libraries(RenderScript PRIVATE BuildSettings GraphicsEngine Lua Common PlatformInterface GraphicsTools) + +set_target_properties(RenderScript PROPERTIES + FOLDER Tools +)
\ No newline at end of file diff --git a/TextureLoader/CMakeLists.txt b/TextureLoader/CMakeLists.txt index ccb9dc1..5cc1a9d 100644 --- a/TextureLoader/CMakeLists.txt +++ b/TextureLoader/CMakeLists.txt @@ -33,4 +33,8 @@ PUBLIC source_group("source" FILES ${SOURCE}) source_group("include" FILES ${INCLUDE}) -target_link_libraries(TextureLoader PRIVATE BuildSettings Common PlatformInterface GraphicsEngine GraphicsTools LibJpeg LibPng LibTiff Lua ZLib)
\ No newline at end of file +target_link_libraries(TextureLoader PRIVATE BuildSettings Common PlatformInterface GraphicsEngine GraphicsTools LibJpeg LibPng LibTiff Lua ZLib) + +set_target_properties(TextureLoader PROPERTIES + FOLDER Tools +)
\ No newline at end of file |
