File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ ADD_LIBRARY(lz4 STATIC
49
49
lz4/xxhash.c
50
50
)
51
51
52
+ set_target_properties (lz4 PROPERTIES FOLDER "Misc" )
53
+
52
54
target_include_directories (lz4 PUBLIC lz4 )
53
55
54
56
add_subdirectory (zstd )
Original file line number Diff line number Diff line change @@ -159,6 +159,8 @@ endif()
159
159
ADD_LIBRARY (zlib STATIC
160
160
${ZLIB_SRCS} ${ZLIB_PUBLIC_HDRS} ${ZLIB_PRIVATE_HDRS} )
161
161
162
+ set_target_properties (zlib PROPERTIES FOLDER "Misc" )
163
+
162
164
if (NOT CYGWIN )
163
165
# This property causes shared libraries on Linux to have the full version
164
166
# encoded into their final filename. We disable this on Cygwin because
@@ -181,5 +183,5 @@ elseif(UNIX)
181
183
endif ()
182
184
endif ()
183
185
184
- ADD_EXECUTABLE (try_zlib try.cc )
185
- TARGET_LINK_LIBRARIES (try_zlib zlib )
186
+ # ADD_EXECUTABLE(try_zlib try.cc)
187
+ # TARGET_LINK_LIBRARIES(try_zlib zlib)
Original file line number Diff line number Diff line change @@ -52,6 +52,8 @@ SET(ZSTD_SRCS
52
52
)
53
53
54
54
ADD_LIBRARY (zstd STATIC ${ZSTD_SRCS} )
55
+ set_target_properties (zstd PROPERTIES FOLDER "Misc" )
56
+
55
57
#-----------------------------------------------------------------------------
56
58
# Add extra compilation flags
57
59
#-----------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments