mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
Correctly handle SubsurfaceMobile
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
89eed5d36e
commit
219299dc01
2 changed files with 5 additions and 11 deletions
|
@ -127,6 +127,7 @@ if(${SUBSURFACE_TARGET_EXECUTABLE} MATCHES "DesktopExecutable")
|
|||
else()
|
||||
set(SUBSURFACE_TARGET subsurface)
|
||||
endif()
|
||||
remove_definitions(-DSUBSURFACE_MOBILE)
|
||||
elseif(${SUBSURFACE_TARGET_EXECUTABLE} MATCHES "MobileExecutable")
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
|
||||
set(SUBSURFACE_TARGET Subsurface-mobile)
|
||||
|
@ -423,14 +424,10 @@ elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|||
install(DIRECTORY theme DESTINATION share/subsurface)
|
||||
install(DIRECTORY printing_templates DESTINATION share/subsurface)
|
||||
install(FILES ${TRANSLATIONS} DESTINATION share/subsurface/translations)
|
||||
if(SUBSURFACE_MOBILE)
|
||||
install(TARGETS ${SUBSURFACE_TARGET} DESTINATION bin)
|
||||
else()
|
||||
install(TARGETS ${SUBSURFACE_TARGET} DESTINATION bin)
|
||||
if (SMARTTRAK_IMPORT)
|
||||
install(TARGETS ${SMTK_IMPORT_TARGET} DESTINATION bin)
|
||||
endif()
|
||||
endif()
|
||||
install(TARGETS ${SUBSURFACE_TARGET} DESTINATION bin)
|
||||
if (SMARTTRAK_IMPORT)
|
||||
install(TARGETS ${SMTK_IMPORT_TARGET} DESTINATION bin)
|
||||
endif()
|
||||
if(DEFINED LIBMARBLEDEVEL)
|
||||
install(
|
||||
CODE "file(GLOB SSRFMARBLE_SHLIBS \"${LIBMARBLEDEVEL}/lib/libssrfmarblewidget.so*\")"
|
||||
|
|
|
@ -14,9 +14,6 @@ set(SUBSURFACE_PROFILE_LIB_SRCS
|
|||
tankitem.cpp
|
||||
)
|
||||
source_group("Subsurface Profile" FILES ${SUBSURFACE_PROFILE_LIB_SRCS})
|
||||
if (SUBSURFACE_MOBILE)
|
||||
add_definitions(-DSUBSURFACE_MOBILE=1)
|
||||
endif()
|
||||
|
||||
add_library(subsurface_profile STATIC ${SUBSURFACE_PROFILE_LIB_SRCS})
|
||||
target_link_libraries(subsurface_profile ${QT_LIBRARIES})
|
||||
|
|
Loading…
Reference in a new issue