Skip to content
Snippets Groups Projects
Commit 108ac03a authored by marco's avatar marco
Browse files

added tmalign and tmscore to bindings

Pass COMPILE_TMTOOLS=1 to cmake if you want them to be built. Requires
a working Fortran compiler.

git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@1908 5a81b35b-ba03-0410-adc8-b2c5c5119f08
parent a311db25
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,8 @@ project(OpenStructure CXX C)
option(USE_SHADER "whether to compile with shader support"
OFF)
option(COMPILE_TMTOOLS "whether to compile the tmalign and tmscore programs"
OFF)
option(PROFILE "whether to compile with profiling support"
OFF)
option(ENABLE_GUI "whether the graphical user interface should be enabled"
......
add_subdirectory(pymod)
add_subdirectory(tests)
add_subdirectory(src)
\ No newline at end of file
if (COMPILE_TMTOOLS)
enable_language(Fortran)
executable(NAME tmalign SOURCES tmalign.f NO_RPATH)
executable(NAME tmscore SOURCES tmscore.f NO_RPATH)
endif()
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment