aboutsummaryrefslogtreecommitdiff
path: root/scripts/CMakeLists.txt
blob: bfa6eb2399ed05540c3b703ba8a02f912f5c6c0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
configure_file(
	${CMAKE_CURRENT_SOURCE_DIR}/spmbuild
	${CMAKE_CURRENT_BINARY_DIR}
	COPYONLY
)

if (APPLE)
	add_executable(spm_realpath
		realpath.c
	)
	install(
			PROGRAMS spm_realpath
			DESTINATION bin
	)
endif ()

install(
	PROGRAMS spmbuild
	DESTINATION bin
)