summaryrefslogtreecommitdiffhomepage
path: root/CMakeLists.txt
blob: 3edd39cd505cafb865ad15d06abfca198aecde0d (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
33
34
35
36
37
38
39
40
cmake_minimum_required(VERSION 3.1)

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

if (UNIX)
	#find_package(Threads)
	find_package(FLEX)
	flex_target(checkauto src/checkauto.l ${CMAKE_CURRENT_BINARY_DIR}/lex.yy.c)
	add_executable(checkauto ${FLEX_checkauto_OUTPUTS})
endif()

include(CTest)
if(BUILD_TESTING)
	file(GLOB examples misc/examples/*.c)
	foreach(file IN LISTS examples)
		get_filename_component(name "${file}" NAME_WE)
		add_executable(${name} ${file})
		#target_compile_options(${name} PRIVATE "-pthread")
		target_compile_options(${name} PRIVATE "-DSTC_STATIC")
		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()
	
	file(GLOB test_files misc/tests/*_test.c)
	add_executable(stctest ${test_files} misc/tests/main.c)
	target_link_libraries(stctest PRIVATE stc m)
	add_test(NAME stctest COMMAND stctest)

	# 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()