Skip to content

Commit

Permalink
Fix typo for vis->viz
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuck Atkins committed Apr 1, 2019
1 parent 0825648 commit 01f428a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
cmake_minimum_required(VERSION 3.6)

option(IO "Enable the I/O Services SDK" OFF)
option(VIS "Enable the Vis & Analysis SDK" OFF)
option(VIZ "Enable the Viz & Analysis SDK" OFF)

if(IO AND VIS)
message(FATAL_ERROR "Exactly one of IO or VIS must be enabled")
if(IO AND VIZ)
message(FATAL_ERROR "Exactly one of IO or VIZ must be enabled")
elseif(IO)
project(ecp-io-sdk)
elseif(VIS)
project(ecp-vis-sdk)
elseif(VIZ)
project(ecp-viz-sdk)
else()
message(FATAL_ERROR "Exactly one of IO or VIS must be enabled")
message(FATAL_ERROR "Exactly one of IO or VIZ must be enabled")
endif()

include(GNUInstallDirs)
Expand Down

0 comments on commit 01f428a

Please sign in to comment.