1# XXX testdata/: EXTRA_DIST = cacert.pem index.html privkey.pem 2if(HAVE_CUNIT) 3 string(REPLACE " " ";" c_flags "${WARNCFLAGS}") 4 add_compile_options(${c_flags}) 5 6 include_directories( 7 "${CMAKE_SOURCE_DIR}/lib/includes" 8 "${CMAKE_SOURCE_DIR}/lib" 9 "${CMAKE_BINARY_DIR}/lib/includes" 10 ${CUNIT_INCLUDE_DIRS} 11 ) 12 13 set(MAIN_SOURCES 14 main.c nghttp2_pq_test.c nghttp2_map_test.c nghttp2_queue_test.c 15 nghttp2_test_helper.c 16 nghttp2_frame_test.c 17 nghttp2_stream_test.c 18 nghttp2_session_test.c 19 nghttp2_hd_test.c 20 nghttp2_npn_test.c 21 nghttp2_helper_test.c 22 nghttp2_buf_test.c 23 nghttp2_http_test.c 24 nghttp2_extpri_test.c 25 ) 26 27 add_executable(main EXCLUDE_FROM_ALL 28 ${MAIN_SOURCES} 29 ) 30 target_include_directories(main PRIVATE ${CUNIT_INCLUDE_DIRS}) 31 target_link_libraries(main 32 nghttp2_static 33 ${CUNIT_LIBRARIES} 34 ) 35 add_test(main main) 36 add_dependencies(check main) 37 38 if(ENABLE_FAILMALLOC) 39 set(FAILMALLOC_SOURCES 40 failmalloc.c failmalloc_test.c 41 malloc_wrapper.c 42 nghttp2_test_helper.c 43 ) 44 add_executable(failmalloc EXCLUDE_FROM_ALL 45 ${FAILMALLOC_SOURCES} 46 ) 47 target_link_libraries(failmalloc 48 nghttp2_static 49 ${CUNIT_LIBRARIES} 50 ) 51 add_test(failmalloc failmalloc) 52 add_dependencies(check failmalloc) 53 endif() 54 55 if(ENABLE_APP) 56 # EXTRA_DIST = end_to_end.py 57 # TESTS += end_to_end.py 58 endif() 59endif() 60