aboutsummaryrefslogtreecommitdiff
path: root/test/bankmap/CMakeLists.txt
diff options
context:
space:
mode:
authorJP Cimalando <jpcima@users.noreply.github.com>2018-05-15 18:09:04 +0200
committerJP Cimalando <jpcima@users.noreply.github.com>2018-05-16 19:34:07 +0200
commit5fdd39289affe341151839a48e227d51b08c4a25 (patch)
treec3ce407cb686be55c4774e2e5c2e03ae9b12728b /test/bankmap/CMakeLists.txt
parentaa26e965a62e03050f68cbe8cdc3a7ca2194a0c6 (diff)
downloadlibADLMIDI-5fdd39289affe341151839a48e227d51b08c4a25.tar.gz
libADLMIDI-5fdd39289affe341151839a48e227d51b08c4a25.tar.bz2
libADLMIDI-5fdd39289affe341151839a48e227d51b08c4a25.zip
specialized hash table for bank number mappings
Diffstat (limited to 'test/bankmap/CMakeLists.txt')
-rw-r--r--test/bankmap/CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/bankmap/CMakeLists.txt b/test/bankmap/CMakeLists.txt
new file mode 100644
index 0000000..2741637
--- /dev/null
+++ b/test/bankmap/CMakeLists.txt
@@ -0,0 +1,12 @@
+
+set(CMAKE_CXX_STANDARD 11)
+
+include_directories(
+ ${CMAKE_CURRENT_SOURCE_DIR}/../common
+ ${CMAKE_SOURCE_DIR}/include
+ ${CMAKE_SOURCE_DIR}/src)
+
+add_executable(BankMapTest bank_map.cpp $<TARGET_OBJECTS:Catch-objects>)
+
+set_target_properties(BankMapTest PROPERTIES COMPILE_DEFINITIONS "GSL_THROW_ON_CONTRACT_VIOLATION")
+add_test(NAME BankMapTest COMMAND BankMapTest)