13 lines
185 B
CMake
13 lines
185 B
CMake
project(unit CXX)
|
|
|
|
add_executable(${PROJECT_NAME}
|
|
${GTEST_MAIN_CPP}
|
|
test_conversions.cpp
|
|
test_ops.cpp
|
|
example.cpp
|
|
test_get_at.cpp
|
|
)
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
gtest
|
|
)
|