diff options
author | Chris Robinson <[email protected]> | 2016-12-21 21:56:51 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-12-21 21:56:51 -0800 |
commit | 40f359d1592263245da409c790c2a48b98a1e815 (patch) | |
tree | b9516c140b3b355eb1221019e173ad52d3e87446 /utils | |
parent | 080b0cea8ba4c21f898c18b70187822cd18f2eb6 (diff) |
Rename the version target for systems that have a version lib
Diffstat (limited to 'utils')
-rw-r--r-- | utils/alsoft-config/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/alsoft-config/CMakeLists.txt b/utils/alsoft-config/CMakeLists.txt index 6d7be8be..37fd7ba5 100644 --- a/utils/alsoft-config/CMakeLists.txt +++ b/utils/alsoft-config/CMakeLists.txt @@ -21,8 +21,8 @@ if(QT4_FOUND) target_link_libraries(alsoft-config ${QT_LIBRARIES}) set_property(TARGET alsoft-config APPEND PROPERTY COMPILE_FLAGS ${EXTRA_CFLAGS}) set_target_properties(alsoft-config PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${OpenAL_BINARY_DIR}) - if(TARGET version) - add_dependencies(alsoft-config version) + if(TARGET build_version) + add_dependencies(alsoft-config build_version) endif() install(TARGETS alsoft-config |