summaryrefslogtreecommitdiffhomepage
path: root/CMakeLists.txt
blob: 9369a07030b4adacb728ce917fd57a2381f7fa41 (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 misc/examples misc/examples/*.c)
	foreach(file IN LISTS misc/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} misc/benchmarks/plotbench/${name}_benchmark.cpp)
	#	target_link_libraries(${name} PRIVATE stc m)
	#	add_test(NAME ${name} COMMAND ${name})
	# endforeach()
endif()