diff options
author | Wohlstand <admin@wohlnet.ru> | 2020-01-28 17:36:42 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2020-01-28 17:36:42 +0300 |
commit | bdb7f81da3e43db01f4ab5781287d22ecb56e025 (patch) | |
tree | 28b412c284e7126f94bfa1eb4ababe5eb0bacf2e /utils/mus2mid/CMakeLists.txt | |
parent | 1ef47f7db773a76a5652094b5ac8a9ec6408d064 (diff) | |
download | libADLMIDI-bdb7f81da3e43db01f4ab5781287d22ecb56e025.tar.gz libADLMIDI-bdb7f81da3e43db01f4ab5781287d22ecb56e025.tar.bz2 libADLMIDI-bdb7f81da3e43db01f4ab5781287d22ecb56e025.zip |
Added MUS2MID conversion tool
Diffstat (limited to 'utils/mus2mid/CMakeLists.txt')
-rw-r--r-- | utils/mus2mid/CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/utils/mus2mid/CMakeLists.txt b/utils/mus2mid/CMakeLists.txt new file mode 100644 index 0000000..6430dd4 --- /dev/null +++ b/utils/mus2mid/CMakeLists.txt @@ -0,0 +1,7 @@ +add_executable(mus2mid mus2mid.cpp) +# TODO: Use own library +target_include_directories(mus2mid PRIVATE ${PROJECT_SOURCE_DIR}/src) + +install(TARGETS mus2mid + RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}") + |