Skip to content
Snippets Groups Projects
Commit a88ae33d authored by Lars Bilke's avatar Lars Bilke
Browse files

Disbale zlib-example on clang.

parent 5e199537
No related branches found
No related tags found
No related merge requests found
...@@ -114,9 +114,11 @@ endif() ...@@ -114,9 +114,11 @@ endif()
# Example binaries # Example binaries
#============================================================================ #============================================================================
add_executable(zlib-example test/example.c) if(NOT COMPILER_IS_CLANG)
target_link_libraries(zlib-example zlib) add_executable(zlib-example test/example.c)
add_test(zlib-example ${EXECUTABLE_OUTPUT_PATH}/zlib-example) target_link_libraries(zlib-example zlib)
add_test(zlib-example ${EXECUTABLE_OUTPUT_PATH}/zlib-example)
endif()
# #
#add_executable(minigzip test/minigzip.c) #add_executable(minigzip test/minigzip.c)
#target_link_libraries(minigzip zlib) #target_link_libraries(minigzip zlib)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment