diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2016-03-20 14:58:24 +0000 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2016-05-19 08:38:03 +0100 |
commit | a03f9b6fb6cdaf480737faf37b9c244f46cd1a85 (patch) | |
tree | 9f2ff1718289bc48de5d9c07fee1d3c54c3af58c /src/tests/CMakeLists.txt | |
parent | 6f6af6928fdff8c807e4a4d03cfd8906e0c7c7cd (diff) |
tests: Infrastructure for unit tests
Diffstat (limited to 'src/tests/CMakeLists.txt')
-rw-r--r-- | src/tests/CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt new file mode 100644 index 000000000..dc476616c --- /dev/null +++ b/src/tests/CMakeLists.txt @@ -0,0 +1,14 @@ +set(SRCS + tests.cpp + ) + +set(HEADERS + ) + +create_directory_groups(${SRCS} ${HEADERS}) + +include_directories(../../externals/catch/single_include/) + +add_executable(tests ${SRCS} ${HEADERS}) +target_link_libraries(tests core video_core audio_core common) +target_link_libraries(tests ${PLATFORM_LIBRARIES}) |