blob: c978ce69882d0f5eaa7f1faf7f0557e2df380323 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
find_package(Boost REQUIRED COMPONENTS program_options)
include_directories(${Boost_INCLUDE_DIR})
set(IMG_SRCS
creator.cc
)
add_executable(hscript-image ${IMG_SRCS})
target_link_libraries(hscript-image hscript ${Boost_LIBRARIES})
install(TARGETS hscript-image DESTINATION bin)
|