summaryrefslogtreecommitdiffstats
path: root/04_exercise/CMakeLists.txt
blob: 0c521a007c946668eba4470f2e9299762281c834 (plain) (blame)
1
2
3
4
5
6
add_executable(quicksort quicksort.c)

target_link_libraries(quicksort PRIVATE threadpool)

add_library(threadpool threadpool.c)