mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
uwac: enable library versioning
This commit is contained in:
parent
71836f6cab
commit
167907ef2e
@ -15,6 +15,13 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
# Soname versioning
|
||||||
|
set(UWAC_VERSION_MAJOR "0")
|
||||||
|
set(UWAC_VERSION_MINOR "0")
|
||||||
|
set(UWAC_VERSION_REVISION "1")
|
||||||
|
set(UWAC_VERSION "${UWAC_VERSION_MAJOR}.${UWAC_VERSION_MINOR}.${UWAC_VERSION_REVISION}")
|
||||||
|
set(UWAC_VERSION_FULL "${UWAC_VERSION}")
|
||||||
|
set(UWAC_API_VERSION "${UWAC_VERSION_MAJOR}")
|
||||||
|
|
||||||
add_subdirectory(include)
|
add_subdirectory(include)
|
||||||
add_subdirectory(libuwac)
|
add_subdirectory(libuwac)
|
||||||
|
|
||||||
|
@ -16,5 +16,4 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
file(GLOB UWAC_HEADERS "uwac/*.h")
|
file(GLOB UWAC_HEADERS "uwac/*.h")
|
||||||
install(FILES ${UWAC_HEADERS} DESTINATION include/uwac COMPONENT headers)
|
install(FILES ${UWAC_HEADERS} DESTINATION include/uwac${UWAC_API_VERSION}/uwac COMPONENT headers)
|
||||||
|
|
||||||
|
@ -65,12 +65,12 @@ add_library(${MODULE_NAME} ${${MODULE_PREFIX}_SRCS})
|
|||||||
|
|
||||||
|
|
||||||
if (WITH_LIBRARY_VERSIONING)
|
if (WITH_LIBRARY_VERSIONING)
|
||||||
#set_target_properties(${MODULE_NAME} PROPERTIES VERSION ${UWAC_VERSION} SOVERSION ${UWAC_API_VERSION})
|
set_target_properties(${MODULE_NAME} PROPERTIES VERSION ${UWAC_VERSION} SOVERSION ${UWAC_API_VERSION})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
target_link_libraries(${MODULE_NAME} ${${MODULE_PREFIX}_LIBS} ${WAYLAND_LIBS} ${XKBCOMMON_LIBS})
|
target_link_libraries(${MODULE_NAME} ${${MODULE_PREFIX}_LIBS} ${WAYLAND_LIBS} ${XKBCOMMON_LIBS} freerdp)
|
||||||
|
|
||||||
install(TARGETS ${MODULE_NAME} DESTINATION ${CMAKE_INSTALL_LIBDIR} EXPORT Uwac)
|
install(TARGETS ${MODULE_NAME} DESTINATION ${CMAKE_INSTALL_LIBDIR} EXPORT uwac)
|
||||||
|
|
||||||
|
|
||||||
set_property(TARGET ${MODULE_NAME} PROPERTY FOLDER "uwac")
|
set_property(TARGET ${MODULE_NAME} PROPERTY FOLDER "uwac")
|
||||||
|
Loading…
Reference in New Issue
Block a user