mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 07:55:41 +00:00
c737f1cddf
This was dead code that did never work, and most of it was boilerplate that you can steel in 15 minutes from any existing math inset. Apart from that it did contain a pointer to InsetXYMatrix which would create the same problems we saw with the macros.
29 lines
827 B
CMake
29 lines
827 B
CMake
# This file is part of LyX, the document processor.
|
|
# Licence details can be found in the file COPYING.
|
|
#
|
|
# Copyright (c) 2006-2011, Peter Kümmel, <syntheticpp@gmx.net>
|
|
#
|
|
|
|
project(mathed)
|
|
|
|
file(GLOB mathed_sources ${TOP_SRC_DIR}/src/mathed/${LYX_CPP_FILES})
|
|
file(GLOB mathed_headers ${TOP_SRC_DIR}/src/mathed/${LYX_HPP_FILES})
|
|
|
|
lyx_add_msvc_pch(mathed)
|
|
|
|
include_directories(${TOP_SRC_DIR}/src/mathed ${QT_INCLUDES})
|
|
|
|
if(NOT LYX_MERGE_FILES)
|
|
add_library(mathed ${library_type} ${mathed_sources} ${mathed_headers})
|
|
else()
|
|
lyx_const_touched_files(_allinone mathed_sources)
|
|
add_library(mathed ${library_type} ${_allinone_files})
|
|
endif()
|
|
set_target_properties(mathed PROPERTIES FOLDER "applications/LyX")
|
|
qt_use_modules(mathed Core)
|
|
|
|
lyx_add_gcc_pch(mathed)
|
|
|
|
project_source_group("${GROUP_CODE}" mathed_sources mathed_headers)
|
|
|