~cern-kicad/kicad/kicad-pns-tom

« back to all changes in this revision

Viewing changes to common/CMakeLists.txt

  • Committer: Maciej Suminski
  • Date: 2013-08-02 13:57:24 UTC
  • mfrom: (4024.1.238 kicad)
  • mto: This revision was merged to the branch mainline in revision 4221.
  • Revision ID: maciej.suminski@cern.ch-20130802135724-gix6orezshkukodv
Upstream merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
    dialogs/dialog_page_settings_base.cpp
77
77
    )
78
78
 
79
 
if(KICAD_GOST)
80
 
    set( TITLE_BLOCK_SHAPES title_block_shapes_gost )
81
 
else()
82
 
    set( TITLE_BLOCK_SHAPES title_block_shapes )
83
 
endif()
 
79
set(COMMON_PAGE_LAYOUT_SRCS
 
80
    page_layout/title_block_shapes.cpp
 
81
    page_layout/class_worksheet_dataitem.cpp
 
82
    page_layout/class_worksheet_layout.cpp
 
83
    page_layout/page_layout_default_description.cpp
 
84
    page_layout/page_layout_graphic_items.cpp
 
85
    page_layout/page_layout_reader_keywords.cpp
 
86
    page_layout/page_layout_reader.cpp
 
87
    )
84
88
 
85
89
set(COMMON_SRCS
86
90
    ${COMMON_ABOUT_DLG_SRCS}
 
91
    ${COMMON_PAGE_LAYOUT_SRCS}
87
92
    base_struct.cpp
88
93
    basicframe.cpp
89
94
    bezier_curves.cpp
126
131
    msgpanel.cpp
127
132
    netlist_keywords.cpp
128
133
    newstroke_font.cpp
129
 
    page_layout_default_description.cpp
130
 
    page_layout_reader_keywords.cpp
131
 
    page_layout_reader.cpp
132
134
    projet_config.cpp
133
135
    ptree.cpp
134
136
    reporter.cpp
135
137
    richio.cpp
136
138
    selcolor.cpp
137
139
    string.cpp
138
 
    ${TITLE_BLOCK_SHAPES}.cpp
139
140
    trigo.cpp
140
141
    wildcards_and_files_ext.cpp
141
142
    worksheet.cpp
257
258
# auto-generate page layout reader s-expression page_layout_reader_lexer.h
258
259
# and title_block_reader_keywords.cpp.
259
260
make_lexer(
260
 
    ${CMAKE_CURRENT_SOURCE_DIR}/page_layout_reader.keywords
 
261
    ${CMAKE_CURRENT_SOURCE_DIR}/page_layout/page_layout_reader.keywords
261
262
    ${PROJECT_SOURCE_DIR}/include/page_layout_reader_lexer.h
262
 
    ${CMAKE_CURRENT_SOURCE_DIR}/page_layout_reader_keywords.cpp
 
263
    ${CMAKE_CURRENT_SOURCE_DIR}/page_layout/page_layout_reader_keywords.cpp
263
264
    TB_READER_T
264
265
    )
265
266