File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ if(LSQPACK_XXH)
25
25
target_sources (ls-qpack PRIVATE deps/xxhash/xxhash.c )
26
26
endif ()
27
27
28
- if (MSVC )
28
+ if (WIN32 )
29
29
target_include_directories (ls-qpack PUBLIC wincompat )
30
30
endif ()
31
31
@@ -104,6 +104,6 @@ endif()
104
104
105
105
install (TARGETS ls-qpack )
106
106
install (FILES lsqpack.h lsxpack_header.h DESTINATION include )
107
- if (MSVC )
107
+ if (WIN32 )
108
108
install (DIRECTORY wincompat/sys DESTINATION include )
109
109
endif ()
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ function(lsqpack_add_executable TARGET)
5
5
target_sources (${TARGET} PRIVATE ${TARGET} .c ../deps/xxhash/xxhash.c )
6
6
target_include_directories (${TARGET} PRIVATE ../deps/xxhash )
7
7
8
- if (MSVC )
8
+ if (WIN32 )
9
9
target_include_directories (${TARGET} PRIVATE ../wincompat )
10
10
target_link_libraries (${TARGET} PRIVATE ${GETOPT_LIB} )
11
11
else ()
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ function(lsqpack_add_test TARGET)
3
3
target_sources (test_${TARGET} PRIVATE test_${TARGET}.c )
4
4
target_link_libraries (test_${TARGET} ls-qpack )
5
5
6
- if (MSVC )
6
+ if (WIN32 )
7
7
target_include_directories (test_${TARGET} PRIVATE ../wincompat )
8
8
target_link_libraries (test_${TARGET} ${GETOPT_LIB} )
9
9
else ()
You can’t perform that action at this time.
0 commit comments