# # @author Tobias Weber # @date 17-jun-2019 # @license see 'LICENSE' file # project(magtools) cmake_minimum_required(VERSION 3.0) option(ONLY_BUILD_FINISHED "only build finished tools" FALSE) if(ONLY_BUILD_FINISHED) # final tools # cif converter add_subdirectory(tools/cif2xml) # polarisation tools add_subdirectory(tools/pol) else() # unfinished tools # setup tools add_subdirectory(tools/setup) # magnetic and nuclear structure tools add_subdirectory(tools/structfact) add_subdirectory(tools/magstructfact) add_subdirectory(tools/magsgbrowser) # molecular dynamics tools add_subdirectory(tools/moldyn) # new scan browser tool add_subdirectory(tools/scanbrowser) endif()