diff options
Diffstat (limited to 'image/CMakeLists.txt')
-rw-r--r-- | image/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/image/CMakeLists.txt b/image/CMakeLists.txt index c978ce6..cbee674 100644 --- a/image/CMakeLists.txt +++ b/image/CMakeLists.txt @@ -1,8 +1,11 @@ find_package(Boost REQUIRED COMPONENTS program_options) include_directories(${Boost_INCLUDE_DIR}) +add_subdirectory(backends) + set(IMG_SRCS creator.cc + ${BACKEND_SRCS} ) add_executable(hscript-image ${IMG_SRCS}) target_link_libraries(hscript-image hscript ${Boost_LIBRARIES}) |