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