File: CMakeLists.txt

package info (click to toggle)
cupt 2.10.4%2Bnmu1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 3,144 kB
  • sloc: cpp: 23,642; perl: 1,599; sh: 40; makefile: 19
file content (27 lines) | stat: -rw-r--r-- 560 bytes parent folder | download | duplicates (3)
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
include_directories(../lib/include)
add_executable(cupt.bin
	common.cpp
	common.hpp
	cupt.cpp
	cupt.hpp
	misc.cpp
	misc.hpp
	handlers.hpp
	handlers/search.cpp
	handlers/misc.cpp
	handlers/managepackages.cpp
	handlers/shell.cpp
	handlers/download.cpp
	handlers/snapshot.cpp
	handlers/why.cpp
	colorizer.cpp
	colorizer.hpp
	functionselectors.cpp
	functionselectors.hpp
	selectors.cpp
	selectors.hpp
)
set_property(TARGET cupt.bin PROPERTY OUTPUT_NAME cupt)
target_link_libraries(cupt.bin libcupt boost_program_options)

install(TARGETS cupt.bin DESTINATION bin)