Merge lp:~mkhu/compiz/compiz.fix_1067246 into lp:compiz/0.9.10
Proposed by
Micheal Hsu
Status: | Superseded |
---|---|
Proposed branch: | lp:~mkhu/compiz/compiz.fix_1067246 |
Merge into: | lp:compiz/0.9.10 |
Diff against target: |
76 lines (+1/-54) 2 files modified
src/logmessage/CMakeLists.txt (+1/-3) src/logmessage/include/core/logmessage.h (+0/-51) |
To merge this branch: | bzr merge lp:~mkhu/compiz/compiz.fix_1067246 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Sam Spilsbury | Needs Fixing | ||
Review via email:
|
This proposal has been superseded by a proposal from 2013-07-15.
Description of the change
remove redundant src/logmessage/
To post a comment you must log in.
there is a lot of inconsistency in src/:
1. headers. where should we put public headers? /include, : e.g. plugin.h, point.h /src/<sub_ directory> /include/ : e.g. string.h /include /<sub_directory >/src/: e.g. point.cpp /src/<sub_ directory> /tests: e.g. plugin, point /tests/ /src/tests
compiz_ plugin_ test, test-plugin.cpp for plugin/tests
compiz_ test_outputdevi ces, test_outputdevi ces.cpp for tests/
some headers are in $(top_srcdir)
some are in $(top_srcdir)
my proposal: put all public headers in $(top_srcdir)
2. .cpp files. where should we put source files?
some .cpp files are in $(top_srcdir)/src : e.g. plugin.cpp
some .cpp files are in $(top_srcdir)
my proposal: put all .cpp files in $(top_srcdir)/src/
3. tests. where should we put tests?
some tests are in $(top_srcdir)
some tests are in $(top_srcdir)
my proposal: put all tests in $(top_srcdir)
4. tests naming inconsistency:
e.g. compiz_option_test, option.cpp for option/tests
my proposal: all test executables should be "compiz_test_xxxx"
all test files should be "test-xxxx"