Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit d2b3e9c6 authored by kraus's avatar kraus
Browse files

adding option whether user want's to compile SDDS tools

parent 0175804f
No related branches found
No related tags found
No related merge requests found
FIND_PACKAGE(SDDS)
OPTION (ENABLE_SDDSTOOLS "Compile conversion tools for SDDS to Opal and vice-versa")
IF(SDDS_FOUND)
ADD_SUBDIRECTORY(sdds2opal)
ADD_SUBDIRECTORY(opal2sdds)
ENDIF(SDDS_FOUND)
IF (ENABLE_SDDSTOOLS)
FIND_PACKAGE(SDDS REQUIRED)
IF(SDDS_FOUND)
ADD_SUBDIRECTORY(sdds2opal)
ADD_SUBDIRECTORY(opal2sdds)
ENDIF(SDDS_FOUND)
ENDIF(ENABLE_SDDSTOOLS)
#ADD_SUBDIRECTORY(SDDSReader)
OPTION (ENABLE_MSLANG "Compile MSLang stand-alone compiler" OFF)
if (ENABLE_MSLANG)
ADD_SUBDIRECTORY(mslang)
endif(ENABLE_MSLANG)
\ No newline at end of file
endif(ENABLE_MSLANG)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment