Skip to content

Commit

Permalink
CMakeLists & Setup Update (#355)
Browse files Browse the repository at this point in the history
* MIVisionX Setup - V 1.8.0

* NN Install Option
* RALI Install Option
* Minor bug Fix
  • Loading branch information
kiritigowda authored Aug 20, 2020
1 parent 6096057 commit 509ece4
Show file tree
Hide file tree
Showing 4 changed files with 544 additions and 359 deletions.
12 changes: 10 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

cmake_minimum_required(VERSION 2.8)
project(MIVisionX)
set(VERSION "1.9.1")
set(VERSION "1.9.2")

set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
Expand Down Expand Up @@ -48,11 +48,19 @@ if(APPLE)
set(CMAKE_MACOSX_RPATH 1)
endif()

option(NEURAL_NET "Build MIVisionX with Neural Net Support" ON)
option(RALI "Build MIVisionX with RALI Support" ON)
option(LOOM "Build MIVisionX with LOOM Support" ON)

add_subdirectory(amd_openvx)
add_subdirectory(amd_openvx_extensions)
add_subdirectory(apps)
add_subdirectory(utilities)
add_subdirectory(rali)
if(RALI)
add_subdirectory(rali)
else()
message("-- ${BoldBlue}RALI Module turned OFF by user option -DRALI=OFF ${ColourReset}")
endif()

install(DIRECTORY docs DESTINATION .)

Expand Down
Loading

0 comments on commit 509ece4

Please sign in to comment.