summaryrefslogtreecommitdiff
path: root/cmd/srv9p/CMakeLists.txt
blob: 8aadb2830441aa270865dadcce82434abb5aa6f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# cmd/srv9p/CMakeLists.txt - Build script for srv9p test/dev executable
#
# Copyright (C) 2024  Luke T. Shumaker <lukeshu@lukeshu.com>
# SPDX-Licence-Identifier: AGPL-3.0-or-later

add_executable(srv9p
	main.c
	static.c
)
target_include_directories(srv9p PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/config)
target_link_libraries(srv9p
	libcr
	libcr_ipc
	libnetio
	lib9p
)