mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-04 22:32:19 +00:00
c2eb1a1a72
This should amend f93ec4a
, but is not tested on apple
13 lines
370 B
CMake
13 lines
370 B
CMake
project(${_convert})
|
|
|
|
include_directories(${QT_INCLUDES})
|
|
add_definitions(-DQT_NO_CAST_TO_ASCII -DQT_NO_STL)
|
|
add_executable(${_convert} "${TOP_SRC_DIR}/src/convert/lyxconvert.cpp")
|
|
|
|
qt_use_modules(${_convert} Core Widgets)
|
|
if(APPLE)
|
|
target_link_libraries(${_convert} "-framework AppKit")
|
|
endif()
|
|
|
|
install(TARGETS ${_convert} DESTINATION ${LYX_UTILITIES_INSTALL_PATH})
|