summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
blob: a82103bbb571bb9506e4b3e36400f778cfa19353 (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
project(kalmia)

target_sources(
	kalmia PUBLIC 
	transform.c
	node.c
	util.c
)
target_include_directories(kalmia PUBLIC ezxml)
target_link_libraries(kalmia ezxml)

add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/ezxml)

if (KALMIA_BUILD_TESTS)
	target_sources(
		kalmia-tests PUBLIC
		test/lily-test.c
		test/test.c

		transform.test.c
		node.test.c
		util.test.c
	)
endif()