]> git.lyx.org Git - features.git/commitdiff
Headers and .C files are now in The Golden Code folder
authorPeter Kümmel <syntheticpp@gmx.net>
Sun, 3 Sep 2006 17:51:53 +0000 (17:51 +0000)
committerPeter Kümmel <syntheticpp@gmx.net>
Sun, 3 Sep 2006 17:51:53 +0000 (17:51 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14883 a592a061-630c-0410-9148-cb99ea01b6c8

12 files changed:
development/cmake/CMakeLists.txt
development/cmake/intl/CMakeLists.txt
development/cmake/src/CMakeLists.txt
development/cmake/src/frontends/CMakeLists.txt
development/cmake/src/frontends/controllers/CMakeLists.txt
development/cmake/src/frontends/qt3/CMakeLists.txt
development/cmake/src/frontends/qt4/CMakeLists.txt
development/cmake/src/graphics/CMakeLists.txt
development/cmake/src/insets/CMakeLists.txt
development/cmake/src/mathed/CMakeLists.txt
development/cmake/src/support/CMakeLists.txt
development/cmake/src/tex2lyx/CMakeLists.txt

index 294973a5625996b4b3e73c32dd81786dcb69f79a..f85e3a24e65aa373261f1489594e05bc9a28b0fe 100644 (file)
@@ -1,6 +1,9 @@
 # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
 set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/modules")
 
+
+set(CODE_GROUP_NAME "The Golden Code")
+
 include(LyXPaths)
 include(LyXMacros)
 
index 4ef0f0e13d75431fc40768a6cfc25ed1dff48c47..8dd321eb58df45bfc5864987dbb354247c124d39 100644 (file)
@@ -77,3 +77,6 @@ add_library(intl STATIC ${intl_sources} ${intl_headers})
 if(ICONV_FOUND)
        target_link_libraries(intl ${ICONV_LIBRARY})
 endif(ICONV_FOUND)
+
+source_group("${CODE_GROUP_NAME}" FILES ${intl_sources} ${intl_headers})
+
index 12f2d6d5c7462cc5400c9044d9b575662e3aaefc..da017e44dc14bba02cf9d12deb30a6b66baa1e1a 100644 (file)
@@ -22,6 +22,8 @@ list(REMOVE_ITEM lyx_sources
        ${TOP_SRC_DIR}/src/Variables.C
        ${TOP_SRC_DIR}/src/Sectioning.C)
 
+set( lyx_sources ${lyx_sources} ${CMAKE_CURRENT_BINARY_DIR}/version.C )
+       
 if(ASPELL_FOUND)
        include_directories(${ASPELL_INCLUDE_DIR})
        set(lyx_sources ${lyx_sources} ${TOP_SRC_DIR}/src/aspell.C)
@@ -52,3 +54,7 @@ target_link_libraries(lyx-${qt_postfix}
 if(ASPELL_FOUND)
        target_link_libraries(lyx-${qt_postfix} ${ASPELL_LIBRARY})
 endif(ASPELL_FOUND)
+
+source_group("${CODE_GROUP_NAME}" FILES ${lyx_sources} ${lyx_headers})
+
+
index e013979391b5daa066e2c8d977103cf5fa0b232a..b5e28f57b0d46c10a968cdd8481d176594f0f43a 100644 (file)
@@ -12,5 +12,5 @@ file(GLOB frontends_headers ${TOP_SRC_DIR}/src/frontends/*.h)
 
 add_library(frontends STATIC ${frontends_sources} ${frontends_headers})
 
-
+source_group("${CODE_GROUP_NAME}" FILES ${frontends_sources} ${frontends_headers})
 
index a092a5e8c5f78ed87c2cac4f323411a29014b44f..fb3481f550b6f31fa4e223aafe0da3910da4233a 100644 (file)
@@ -9,8 +9,5 @@ add_library(controllers STATIC ${controllers_sources} ${controllers_headers})
 
 target_link_libraries(controllers boost_regex boost_filesystem)
 
-
-
-
-
+source_group("${CODE_GROUP_NAME}" FILES ${controllers_sources} ${controllers_headers})
 
index 82ec1a272465fa068bf7ef283f44f88470eba8db..177e50e9c6cb831df2531e26850d9549b180f248 100644 (file)
@@ -35,3 +35,6 @@ if(WIN32)
        target_link_libraries(frontend_qt3 Gdi32)
 endif(WIN32)
 
+source_group("${CODE_GROUP_NAME}" FILES ${frontends_qt3_sources} ${frontends_qt3_headers})
+source_group("Uic files" FILES ${frontend_qt3_UI})
+
index 0db9b94d96c876744ab8f5eef32c9545e7872132..643a498808c334aaccbecbcbd42630419f9ffb7b 100644 (file)
@@ -10,8 +10,6 @@ lyx_automoc(${frontends_qt4_sources})
 
 lyx_add_ui_files(frontends_qt4_sources ${frontend_qt4_UI})
 
-source_group("Uic files" FILES ${frontend_qt4_UI})
-
 add_definitions(
                -DQT_CLEAN_NAMESPACE
                -DQT_GENUINE_STR
@@ -31,3 +29,6 @@ if(WIN32)
        target_link_libraries(frontend_qt4 Gdi32)
 endif(WIN32)
 
+source_group("${CODE_GROUP_NAME}" FILES ${frontends_qt4_sources} ${frontends_qt4_headers})
+source_group("Uic files" FILES ${frontend_qt4_UI})
+
index 044d7cb6cf1ca9830a4caa11d8717dd1b654c375..18ce3aca0f7a6be3929596ffd0304433502409ea 100644 (file)
@@ -7,3 +7,5 @@ include_directories(${TOP_SRC_DIR}/src/graphics)
 
 add_library(graphics STATIC ${graphics_sources} ${graphics_headers})
 
+source_group("${CODE_GROUP_NAME}" FILES ${graphics_sources} ${graphics_headers})
+
index 072488f1ade40a92d4be83a9829e1f13a38f08d8..34bb500cff2a55ce1b558ad532af3ecca4952b53 100644 (file)
@@ -9,3 +9,5 @@ include_directories(${TOP_SRC_DIR}/src/insets)
 
 add_library(insets STATIC ${insets_sources} ${insets_headers})
 
+source_group("${CODE_GROUP_NAME}" FILES ${insets_sources} ${insets_headers})
+
index 9ca62103fd48564d2cd2d41c10af0d131833e0c3..92adc4188fe8e2c17d7b608ba25d238ea4eb8b55 100644 (file)
@@ -12,4 +12,5 @@ include_directories(${TOP_SRC_DIR}/src/mathed)
 
 add_library(mathed STATIC ${mathed_sources} ${mathed_headers})
 
+source_group("${CODE_GROUP_NAME}" FILES ${mathed_sources} ${mathed_headers})
 
index 4cb7e5dc249febb45f2de2d97f3fe856239a8bd7..b083f3a46fe097559c9d0d255b91bf6233d859fd 100644 (file)
@@ -14,12 +14,12 @@ list(REMOVE_ITEM support_sources
        ${TOP_SRC_DIR}/src/support/strerror.c)
        
 
+set(support_sources ${support_sources} ${CMAKE_CURRENT_BINARY_DIR}/package.C)
+       
 include_directories(${TOP_SRC_DIR}/src/support ${ICONV_INCLUDE_DIR})
 
-add_library(support STATIC 
-       ${support_sources} 
-       ${support_headers} 
-       ${CMAKE_CURRENT_BINARY_DIR}/package.C)
+
+add_library(support STATIC ${support_sources} ${support_headers})
 
 target_link_libraries(support boost_signals)
 
@@ -27,5 +27,5 @@ if(WIN32)
        target_link_libraries(support shlwapi)
 endif(WIN32)
 
-
+source_group("${CODE_GROUP_NAME}" FILES ${support_sources} ${support_headers})
 
index 897ea3711d95eea48e684f14cb1128975b59c5e2..8af96a6fb3864f3ce7094d1ebbed2c02f14d6ede 100644 (file)
@@ -38,4 +38,5 @@ add_executable(tex2lyx ${tex2lyx_SRCS})
 
 target_link_libraries(tex2lyx  support )
 
+source_group("${CODE_GROUP_NAME}" FILES ${tex2lyx_SRCS})