CMakeLists.txt 277 B

1234567891011
  1. cmake_minimum_required(VERSION 3.9)
  2. project(tangle)
  3. # Source for the command line tool
  4. set(CLI_MAIN "${PROJECT_SOURCE_DIR}/extras/simulator_cli.cpp")
  5. if(SKBUILD) # Using Python
  6. add_subdirectory(tangle)
  7. else() # Using Command Line Tool
  8. add_subdirectory(extras)
  9. endif()