summaryrefslogtreecommitdiffhomepage
path: root/CMakeLists.txt
blob: 1a38453faa6a1534f5c3a9c2259d43385accbb29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
cmake_minimum_required(VERSION 3.1)

project(stc)
add_library(stc INTERFACE)
target_include_directories(stc INTERFACE include)

find_package(FLEX)
find_package(Threads)

flex_target(checkauto src/checkauto.l ${CMAKE_CURRENT_BINARY_DIR}/lex.yy.c)
add_executable(checkauto ${FLEX_checkauto_OUTPUTS})

include(CTest)
if(BUILD_TESTING)
	file(GLOB examples examples/*.c)
	foreach(file IN LISTS examples)
		get_filename_component(name "${file}" NAME_WE)
		add_executable(${name} ${file})
	target_compile_options(${name} PRIVATE "-pthread")
	if(CMAKE_THREAD_LIBS_INIT)
		target_link_libraries(${name} PRIVATE "${CMAKE_THREAD_LIBS_INIT}")
	endif()
		target_link_libraries(${name} PRIVATE stc m)
		add_test(NAME ${name} COMMAND ${name})
	endforeach()
	# foreach(name IN ITEMS cdeq clist cmap csmap cvec)
	#	add_executable(${name} benchmarks/plotbench/${name}_benchmark.cpp)
	#	target_link_libraries(${name} PRIVATE stc m)
	#	add_test(NAME ${name} COMMAND ${name})
	# endforeach()
endif()