Guest User

Untitled

a guest
Dec 16th, 2016
608
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. cmake_minimum_required(VERSION 3.6)
  2. project(src)
  3.  
  4. set(CMAKE_CXX_STANDARD 11)
  5. include_directories({MPI_INCLUDE_PATH})
  6.  
  7. set(SOURCE_FILES
  8. COPYING/gpl.txt
  9. lhc/all_sizes.cpp
  10. lhc/all_sizes.hpp
  11. lhc/common.cpp
  12. lhc/common.hpp
  13. lhc/sha.cpp
  14. lhc/sha.hpp
  15. collisionSearch.cpp
  16. example.cpp
  17. Makefile
  18. test__common.hpp
  19. test__sha.hpp)
  20.  
  21. add_executable(src ${SOURCE_FILES})
Advertisement
Add Comment
Please, Sign In to add comment