aboutsummaryrefslogtreecommitdiff
path: root/test/conversion/CMakeLists.txt
diff options
context:
space:
mode:
authorVitaly Novichkov <admin@wohlnet.ru>2018-07-26 02:29:54 +0300
committerVitaly Novichkov <admin@wohlnet.ru>2018-07-26 02:29:54 +0300
commit553826d16b96fb43a2d18b497c31279b03ee5cb9 (patch)
tree59bf11e87a92c1965f018422c65e8fde6b57b6b4 /test/conversion/CMakeLists.txt
parente340bd10e45299bd8fb5d683c9b0e963aa2ef770 (diff)
parent1f90cf121ffb444db9db5fe1e5a5017a3450bac1 (diff)
downloadlibADLMIDI-553826d16b96fb43a2d18b497c31279b03ee5cb9.tar.gz
libADLMIDI-553826d16b96fb43a2d18b497c31279b03ee5cb9.tar.bz2
libADLMIDI-553826d16b96fb43a2d18b497c31279b03ee5cb9.zip
Merge branch 'master' into velocity-offset
# Conflicts: # src/adlmidi_load.cpp
Diffstat (limited to 'test/conversion/CMakeLists.txt')
-rw-r--r--test/conversion/CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/conversion/CMakeLists.txt b/test/conversion/CMakeLists.txt
new file mode 100644
index 0000000..361c7e8
--- /dev/null
+++ b/test/conversion/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(ConversionTest conversion.cpp $<TARGET_OBJECTS:Catch-objects>)
+
+set_target_properties(ConversionTest PROPERTIES COMPILE_DEFINITIONS "GSL_THROW_ON_CONTRACT_VIOLATION")
+add_test(NAME ConversionTest COMMAND ConversionTest)