King_DuckZ
fe03f45f76
Shows what it looks like when you mix vectors of different type vs using vectorwrapper.
12 lines
168 B
CMake
12 lines
168 B
CMake
project(unit CXX)
|
|
|
|
add_executable(${PROJECT_NAME}
|
|
${GTEST_MAIN_CPP}
|
|
test_conversions.cpp
|
|
test_ops.cpp
|
|
example.cpp
|
|
)
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
gtest
|
|
)
|