From 652835bdea60100d1a4653a1ae15a9e1520944cf Mon Sep 17 00:00:00 2001 From: Kornel Benko Date: Tue, 21 Oct 2014 14:50:44 +0200 Subject: [PATCH] Cmake build: Omit files with names not starting with aplha character. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 491e58f7f8..075a6a74e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -480,7 +480,7 @@ if(NOT GROUP_CODE) endif() # lyx's source files -set(LYX_CPP_FILES *.cpp) +set(LYX_CPP_FILES [a-zA-Z]*.cpp) set(LYX_HPP_FILES *.h) set(LYX_MOC_FILES moc_*.cpp)