#--------------------------------------------------- # Force comparison test #---------------------------------------------------- # On Linux it appears that cmake 2.4 does not work with Cuda cmake rules CMAKE_MINIMUM_REQUIRED(VERSION 2.6) # Define the project PROJECT(softcore-argon-test) # Define include directories INCLUDE_DIRECTORIES( "$ENV{OPENMM_INSTALL_DIR}/include" ) LINK_DIRECTORIES( "$ENV{OPENMM_INSTALL_DIR}/lib" ) # Define the executables ADD_EXECUTABLE(softcore-argon-test softcore-argon-test.cpp) # Add link libraries TARGET_LINK_LIBRARIES(softcore-argon-test OpenMM)