~ubuntu-branches/debian/sid/neovim/sid

« back to all changes in this revision

Viewing changes to src/nvim/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2016-04-18 21:42:19 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: package-import@ubuntu.com-20160418214219-6lf1w0zadujghas7
Tags: upstream-0.1.3
ImportĀ upstreamĀ versionĀ 0.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
file(GLOB_RECURSE NEOVIM_HEADERS *.h)
61
61
file(GLOB UNIT_TEST_FIXTURES ${PROJECT_SOURCE_DIR}/test/unit/fixtures/*.c)
62
62
 
 
63
# Sort file lists to ensure generated files are created in the same order from
 
64
# build to build.
 
65
list(SORT NEOVIM_SOURCES)
 
66
list(SORT NEOVIM_HEADERS)
 
67
 
63
68
foreach(sfile ${NEOVIM_SOURCES})
64
69
  get_filename_component(f ${sfile} NAME)
65
70
  if(${f} MATCHES "^(regexp_nfa.c)$")
72
77
# Handle legacy files that don't yet pass -Wconversion.
73
78
set(CONV_SOURCES
74
79
  buffer.c
75
 
  charset.c
76
80
  diff.c
77
81
  edit.c
78
82
  eval.c
79
 
  ex_cmds2.c
80
83
  ex_cmds.c
81
84
  ex_docmd.c
82
85
  ex_getln.c
87
90
  message.c
88
91
  misc1.c
89
92
  ops.c
90
 
  path.c
91
 
  quickfix.c
92
93
  regexp.c
93
94
  screen.c
94
95
  search.c