]> git.lyx.org Git - lyx.git/blobdiff - development/cmake/Install.cmake
Remove moc-files from the set of source files
[lyx.git] / development / cmake / Install.cmake
index 61c6213d54684e420b1fe9a83435d8be8a4e1d70..908ecd256530956dce4c59bf3ae621ee4f730973 100755 (executable)
@@ -8,6 +8,7 @@ message(STATUS "installing to ${CMAKE_INSTALL_PREFIX}, defined by CMAKE_INSTALL_
 # and installs the files in CMAKE_INSTALL_PREFIX/_current_dir
 # dir_item is on item of the remaining arguments
 macro(lyx_install _parent_src_dir _gl_dir _file_type)
+  #message("checking parents ${_parent_src_dir}")
   file(GLOB _dirs RELATIVE "${_parent_src_dir}" ${_parent_src_dir}/${_gl_dir})
   #cmake bug on Windows: if _gl_dir==. _dirs is empty but on linux _dirs==.
   if(NOT _dirs)
@@ -17,10 +18,9 @@ macro(lyx_install _parent_src_dir _gl_dir _file_type)
     foreach(_glob_dir ${ARGN})
       file(GLOB _dir_list ${_parent_src_dir}/${_dir}/${_glob_dir})
       if(NOT _dir_list)
-        set(_dir_list ${_parent_src_dir}/${_dir})
-      endif() 
-      if(_glob_dir STREQUAL ".")
-        set(_dir_list ${_parent_src_dir}/${_dir}/.)
+        if(_glob_dir STREQUAL ".")
+          set(_dir_list ${_parent_src_dir}/${_dir}/.)
+        endif()
       endif()
       #message(STATUS "${_dir}/${_glob_dir} -> ${_dir_list} ")
       foreach(_current_dir ${_dir_list})
@@ -78,5 +78,3 @@ lyx_install(${TOP_SRC_DIR}/lib tex          *      .)
 lyx_install(${TOP_SRC_DIR}/lib ui           *      .)
 lyx_install(${TOP_SRC_DIR}/lib .            *      .)
 
-install(PROGRAMS ${TOP_SRC_DIR}/lib/lyx2lyx/lyx2lyx DESTINATION lyx2lyx)
-