Digikam/Hacking with Eclipse: Difference between revisions

From KDE Community Wiki
*>Jwienke
(Basic idea how to create an eclipse project with cmake)
 
m (4 revisions imported)
 
(3 intermediate revisions by 2 users not shown)
Line 2: Line 2:


Inside the folder that is used for the out-of-source build (must not be a child of the original source folder) do:
Inside the folder that is used for the out-of-source build (must not be a child of the original source folder) do:
<code>
<syntaxhighlight lang="text">
cmake -G "Eclipse CDT4 - Unix Makefiles" \
cmake -G "Eclipse CDT4 - Unix Makefiles" \
-DCMAKE_INSTALL_PREFIX=/usr/ \
-DCMAKE_INSTALL_PREFIX=/usr/ \
Line 11: Line 11:
-DECLIPSE_CDT4_GENERATE_SOURCE_PROJECT=TRUE \
-DECLIPSE_CDT4_GENERATE_SOURCE_PROJECT=TRUE \
../../digikam/ <-- your source folder
../../digikam/ <-- your source folder
</code>
</syntaxhighlight>
This creates two eclipse projects. One in the build directory for building and one in the source folder for using Eclipse version control on the sources.
This creates two eclipse projects. One in the build directory for building and one in the source folder for using Eclipse version control on the sources. Import these two projects in eclipse but ensure that you don't copy the files while importing (there is a checkbox in the import dialog).

Latest revision as of 17:44, 18 March 2016

Creating the eclipse project with cmake as an out-of-source build:

Inside the folder that is used for the out-of-source build (must not be a child of the original source folder) do:

cmake -G "Eclipse CDT4 - Unix Makefiles" \
-DCMAKE_INSTALL_PREFIX=/usr/ \
-DKDE4_BUILD_TESTS=ON \
-DCMAKE_CXX_FLAGS=-pedantic \
-DCMAKE_C_FLAGS=-pedantic \
-DCMAKE_BUILD_TYPE=debug \
-DECLIPSE_CDT4_GENERATE_SOURCE_PROJECT=TRUE \
../../digikam/ <-- your source folder

This creates two eclipse projects. One in the build directory for building and one in the source folder for using Eclipse version control on the sources. Import these two projects in eclipse but ensure that you don't copy the files while importing (there is a checkbox in the import dialog).