diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-05-16 03:37:59 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-05-16 03:46:18 +0300 |
commit | a8ec2f990a624136ca3eefa39e3e87e92aea5a2e (patch) | |
tree | 855b930955bb656b35a7f6db497088f6307b4898 | |
parent | 07bf460041bcc518483078afb34e83b9a3aeabb6 (diff) | |
download | libADLMIDI-a8ec2f990a624136ca3eefa39e3e87e92aea5a2e.tar.gz libADLMIDI-a8ec2f990a624136ca3eefa39e3e87e92aea5a2e.tar.bz2 libADLMIDI-a8ec2f990a624136ca3eefa39e3e87e92aea5a2e.zip |
CMake: Fixed build of ADLMIDI2 when GenAdlData is disabled
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d6dbd01..43c97f9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -384,7 +384,7 @@ if(WITH_ADLMIDI2) CMAKE_COMPILER_IS_MINGW) if(${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} VERSION_GREATER 3.2) message("Turned on C++11 on GCC/CLang/Intel") - set_target_properties(gen_adldata PROPERTIES + set_target_properties(adlmidi2 PROPERTIES CXX_STANDARD 11 CXX_STANDARD_REQUIRED YES) endif() |