diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-11-21 19:56:25 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-11-21 19:56:25 -0500 |
| commit | d43ef1a1c0873b235a7e7ebcfb27a5f7d2b25303 (patch) | |
| tree | 803408bbdb09fcc4cb8adbf82c87c9a84aebb3f5 /test/memory/CMakeLists.txt | |
| parent | 79bb6ab8c0c7b3ecc14926cd682224ca7c01f094 (diff) | |
checkpoint - memory overhual including tests
Diffstat (limited to 'test/memory/CMakeLists.txt')
| -rw-r--r-- | test/memory/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/memory/CMakeLists.txt b/test/memory/CMakeLists.txt new file mode 100644 index 0000000..ede5be4 --- /dev/null +++ b/test/memory/CMakeLists.txt @@ -0,0 +1,16 @@ +set(BINARY pke_test_memory) + +set(TEST_SOURCE_FILES + main.cpp + general.cpp + ../../src/memory.cpp +) + +add_executable(${BINARY} ${TEST_SOURCE_FILES}) + +add_test(NAME ${BINARY} COMMAND ${BINARY}) + +target_include_directories(${BINARY} PUBLIC "../../src") + +target_link_libraries(${BINARY} PUBLIC gmock) + |
