]> git.lyx.org Git - lyx.git/blob - development/cmake/TODO.txt
Format incremented to 574: Ruby inset, fixes for Japanese.
[lyx.git] / development / cmake / TODO.txt
1
2
3 Defaults:
4   * DONE: NLS should be enabled by default.
5   * Eventually, cmake without option should generate a makefile that has reasonable defaults for everything
6     (nls, spellcheck, build type, ...), at least when released.
7
8
9 Help:
10   * DONE: I do not know how to have a list of variables from the command line
11     (before I actually run it). cmake --help is not useful.
12   * how can I see what the command line was. With autoconf I'd just
13     do "make V=1", what shall I do with cmake?
14     ANSWER: "make VERBOSE=1"
15
16
17 Bug fixing
18   * DONE: Run in place, without using LYX_DIR_21x 
19      copy the resources (bind/ ui/ layouts/ dicts/ thes/ ...) to the build stage (?)
20      This is what I do: copy them from an autotools install into the cmake project.
21         Package.cpp and config.h.cmake has to be fixed.
22   * check that .tar.gz and .xz are identical to those from autotools
23   * *.po are too often generated by Visual Studio
24   * show correct values in cmake-gui: write forced to cache
25
26
27 Documentation
28   * Better documentation, variable naming, more automake-like
29   * how do I specify whether I want debug informations (-g flag) for unix?
30
31
32 Features
33   * I would like to see a BUILD_TYPE flag like in autotools, with automatic selection from lyx version
34   * Disbale merging selectively
35   * STARTED: Make .dmg
36   * STARTED: Bundles for Mac OSX
37     with support for universal binaries (don't know if it currently is a problem to build them)
38   * from the maintainer point of view these task are needed:
39       - DONE: *.po remerge of strings in po/ (ie "make update-po")
40       - DONE: tarball creation, most notably i dont see any list of files which should go into tarball, we dont want everything to go there
41               (ie "make distcheck" to check tree is prepared for release, "make dist" for actual release)
42           ANSWER: "make package_source"
43     these are nice to have and present in autotools, though not critical
44       - DONE: target for regenaration of lfuns manual would be nice (ie make lfundoc)
45       - DONE: target for doxygen generation (ie make doxydoc)
46   * DONE: get patch version from configure.ac (regex)
47   * DONE: Automatically generate package dependencies for debian
48
49
50 Cleanup
51   * stdlib-debug mode should be merged with windows debug mode, since it is the same basically
52   * DONE: I do not like the weird paths where built files go. I really cannot find my way there
53   * Shouldn't we use lower case names everywhere (when possible)?
54     Then the cmake files doesn't look that antiquated. And seeing an uppercase variable means
55     that this variable wasn't introduced by lyx and is a cmake default name.
56   * DONE: port 'development/cmake/doc/ReplaceValues.pl' to python
57   * STARTED: split master CMakeLists somehow: cpack, pcs, warnings, dependencies, defaults, install, options, ...
58                                      remove dependencies between these modules
59         DONE for cpack
60
61
62
63
64
65