5 lines
253 B
CMake
5 lines
253 B
CMake
|
|
add_executable(test_simple_commands test_simple_commands.cpp)
|
|
target_link_libraries(test_simple_commands PRIVATE lammps GTest::GMock GTest::GTest)
|
|
add_test(NAME SimpleCommands COMMAND test_simple_commands WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|