04dbb7f1d1
Reorder the tests in all_tests.sh to be in alphabetical order. Change-Id: Idc6df6ab4a25709312a6f58635061bb643582c70 Reviewed-on: https://boringssl-review.googlesource.com/1680 Reviewed-by: Adam Langley <agl@google.com>
18 lines
167 B
CMake
18 lines
167 B
CMake
include_directories(../../include)
|
|
|
|
add_library(
|
|
pqueue
|
|
|
|
OBJECT
|
|
|
|
pqueue.c
|
|
)
|
|
|
|
add_executable(
|
|
pqueue_test
|
|
|
|
pqueue_test.c
|
|
)
|
|
|
|
target_link_libraries(pqueue_test ssl)
|