Merge lp:~compiz-team/compiz/compiz.fix_1067246.1 into lp:compiz/0.9.10
Proposed by
Sam Spilsbury
Status: | Merged |
---|---|
Approved by: | Andrea Azzarone |
Approved revision: | 3756 |
Merged at revision: | 3764 |
Proposed branch: | lp:~compiz-team/compiz/compiz.fix_1067246.1 |
Merge into: | lp:compiz/0.9.10 |
Diff against target: |
100 lines (+1/-64) 3 files modified
include/core/CMakeLists.txt (+1/-0) src/logmessage/CMakeLists.txt (+0/-13) src/logmessage/include/core/logmessage.h (+0/-51) |
To merge this branch: | bzr merge lp:~compiz-team/compiz/compiz.fix_1067246.1 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
PS Jenkins bot (community) | continuous-integration | Approve | |
Sam Spilsbury | Approve | ||
Review via email:
|
This proposal supersedes a proposal from 2013-07-15.
Commit message
Remove redundant src/logmessage/
(LP: #1067246)
Description of the change
Remove redundant src/logmessage/
(LP: #1067246)
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"