Project

General

Profile

Start to build Scol using CMAKE » History » Version 19

brainsandwich, 06/29/2015 03:03 PM

1 1 arkeon
h1. Start to build Scol using CMAKE
2
3 10 brainsandwich
h2. Prepare all the necessary tools
4
5
Before going any further, you should take care of having everything ready for the builds.
6
7
h3. Windows
8
9
On Windows, the Scol project is built with CMake and Visual Studio 2010.
10
11
* You can get CMake freely at http://www.cmake.org/download/
12
* However Visual Studio 2010 is not free. If you don't have it you can still get Visual Studio 2010 express at https://www.visualstudio.com/downloads/download-visual-studio-vs (there is VS 2010 express down the page) or the complete edition by -getting the torrent- having a good friend who still has the software at home. Because as far as I know you can't even buy it anymore. Hopefully the express edition should suffice. Eventually the build will migrate to a newer VS edition (like VS 2013 community edition, which is free as soon as you are not doing commercial products).
13
14
It should be about it.
15
16
h3. Android
17
18
On Android you need to download more stuff. The configurator is also CMake but you can build the final project with almost anything.
19
At I-Maginer we're using Visual Studio 2013 community edition with some Nvidia plugins, and NMake (which is provided by any version of Visual Studio).
20
21
First thing is then to download CMake and a version of Visual Studio that suits you.
22
23
When it's done, you have got 2 options : either you want to rely on Visual Studio or only on NMake manual commands.
24
25
* If you opted for the first choice, it's quite simple, just go to https://developer.nvidia.com/gameworksdownload and download the Tegra Android Development Pack (TADP). It contains all you need to develop for android targets, available on Windows, Linux and Mac OS platforms. It will add the Visual Studio "Nsight Tegra" plugin, the android SDK and NDK and all the environment variables you'll need.
26
* If you chosed the second choice, well, it's the way of the hero.
27
¤ Download the JDK (Java Development Kit) at http://www.oracle.com/technetwork/java/javase/downloads
28 11 brainsandwich
¤ Fetch the Android SDK (Software Development Kit) at https://developer.android.com/sdk/installing and go for "Stand-Alone SDK tools" -- when it's done, extract the content and put it in some memorable folder where you keep your dev SDK
29 10 brainsandwich
¤ Same for the Android NDK (Native Development Kit) at https://developer.android.com/tools/sdk/ndk
30 1 arkeon
¤ Finally get the ANT (Another Neat Tool) build system at http://ant.apache.org/
31 11 brainsandwich
Now everything is downloaded, there's one last thing to do :
32 18 brainsandwich
¤ Launch the Android SDK (you can find it in your Android SDK folder) and let it download all the things it wants.
33 9 brainsandwich
34 1 arkeon
h2. Get the Scol sources
35
36 18 brainsandwich
Scol uses Subversion for source control and you can use "Tortoise SVN":http://tortoisesvn.net/ to get the source code.
37 1 arkeon
38
So first retrieve the sources from "https://svn.scolring.org/trunk/", accept the certificate and go take some coffee.
39
The source directories contains most of the dependencies, and since some of them are modified they are provided in the sources.
40 18 brainsandwich
41
The curl sources are downloaded via git however. You can use "Tortoise git":https://code.google.com/p/tortoisegit/ or the "git":https://git-scm.com/ utility itself.
42
When you have your tool ready, go to the dependencies folder and clone the "Curl Repository":https://github.com/bagder/curl into a "curl" folder.
43 1 arkeon
44
h2. Dependencies search paths
45
46 7 brainsandwich
h3. Windows
47
48 1 arkeon
Once you get the sources, you can execute "setWindowsSearchPaths.bat" in the dependencies directory.
49 7 brainsandwich
!!WARNING!! when you execute the bat file using the mouse the current directory is wrong.
50 6 arkeon
You need to start a DOS command line "cmd.exe" as administrator and go to the dependencies directory to start the bat file manually.
51
 
52 1 arkeon
This will add needed environment variables and paths.
53 7 brainsandwich
54
h3. Android
55
56 12 brainsandwich
(Don't take care about this if you downloaded the TADP thing)
57 7 brainsandwich
For Android build on Windows, there's no such bat file for the moment (sorry). You will have to put the environment variables
58 8 brainsandwich
yourself. Right click on Computer -> Properties (in file explorer for example) -> System Parameters -> Environment Variables
59 7 brainsandwich
Then add these entries (into "system variables") :
60
* ANDROID_HOME : path/to/sdk
61
* ANDROID_SDK_HOME : path/to/sdk
62
* ANDROID_SDK : path/to/sdk
63
* ANDROID_NDK : path/to/ndk
64
* ANT_HOME : path/to/ant
65
* JAVA_HOME : path/to/jdk -- should be something like "C:\Progra~1\Java\<jdkfolder>"
66
* CMAKE : path/to/cmake
67
68
Then add these variables into the PATH one (you can copy pasta the following) :
69
70
@%ANDROID_NDK%;%ANT_HOME%\bin;%ANDROID_SDK%\tools;%ANDROID_SDK%\platform-tools;%CMAKE%;%JAVA_HOME%\bin;@
71 1 arkeon
72
h2. Build needed dependencies
73
74 13 brainsandwich
Most of the configure/build process is automated, but there is little manual actions to do.
75
76
First either launch cmake-gui from a Visual Studio command line (very important, Visual Studio command line adds environment variables important for a correct configuration) or prepare to run cmake from a command line if you are on Linux (or just a command-line masochist -- as I am but not enough for this huge project).
77
78 19 brainsandwich
In cmake-gui, set the sources directory to trunk/dependencies and the build to trunk/dependencies/build/<target OS>/<target platform> and hit the "configure" button. Then you're asked to set the generator to build the project, set "NMake makefiles" and select "specify toolchain for cross-compiling". Then set the toolchain path to "~/trunk/dependencies/CMake/toolchain/android.toolchain.cmake" if you're building with standard tools, "~/trunk/dependencies/CMake/toolchain/android.nsight.toolchain.cmake" if you're using the TADP.
79
80
After a moment, there should be lots of red variables on the gui. Don't change anything, hit configure again and finally "generate". Now go to the build folder and open the SCOLDEPS.sln if your on windows or take your terminal window, go to the build folder and run @nmake install@. If you're not doing the build on an IBM supercluster, you should go take another coffee.
81 13 brainsandwich
82 17 brainsandwich
When it's done, come check back on cmake-gui. Now look into "SCOLDEPS" variables and turn on libPng, curl, OpenAL and Ogre. Same as before, build the newly generated project and -seriously make us a call if you're doing this with a supercomputer and tell us how Scol's doing on that beast.-
83 13 brainsandwich
84 14 brainsandwich
Finally, check once again the cmake-gui and tell it to build SkyX, HydraX and CAUDIO. Now it's okay, the dependencies are ready.
85 3 arkeon
86 16 brainsandwich
h2. Build the Scol project
87 1 arkeon
88 15 brainsandwich
>But wait, there's more !
89 1 arkeon
90 15 brainsandwich
Now you can do the thing with Scol itself. Set the sources directory of cmake-gui to trunk/scol and the output to trunk/build/<target OS>/<target platform> and hit configure + generate. Build the project using nmake in the build folder. You can go bake some pie until it's done (just prepare the recipy in your head if you've got the supercomputer).
91 1 arkeon
92
The compiled binaries are exported under trunk/scol_sdk/bin/Release or Debug.
93
94
h1. Start your new plugin
95
96
h2. Source paths
97 2 arkeon
98 1 arkeon
Start by creating a directory with your new plugin name in the trunk/scol/plugins folder.
99
For example trunk/scol/plugins/myPlugin
100
101
Usually we prefer to separate the sources and the includes.
102
So creates a "src" and "include" directory in your plugin folder.
103
104
Creates the empty files you will need for your project, usually :
105 4 arkeon
- include/myplugin.h for your classes declaration
106
- src/myplugin.cpp for your classes definition
107 1 arkeon
- src/scolplugin.cpp for the Scol binding functions
108
109
h2. Dependencies
110
111
If your project need an external SDK or dependencies, add then in the trunk/dependencies directory.
112
Then create a findMydepname.cmake file in trunk\scol\CMake\Packages.
113
You can copy and change an existing Find.cmake file to make yours.
114
Start from a simple one like FindMyo.cmake for example.
115
116
h2. Cmake files
117
118
It's time to creates the CMAKE script for your plugin.
119
120
Create a "CMakeLists.txt" file in the plugin directory.
121
trunk/scol/plugins/myPlugin/CMakeLists.txt
122
123
And edit the file with a text editor.
124
125
<pre>
126
#-------------------------------------------------------------------
127
# This file is part of the CMake build system for Scol
128
#
129
# The contents of this file are placed in the public domain. Feel
130
# free to make use of it in any way you like.
131
#-------------------------------------------------------------------
132
133
############################################################
134
# CmakeList file for Myplugin
135
############################################################
136
137
#Your project name
138
PROJECT(myPLugin)
139
140
# define header and source files for the library
141
set (MYPLUGIN_HEADER_FILES
142
  include/myplugin.h
143
)
144
145
set (MYPLUGIN_SOURCE_FILES
146
  src/myplugin.cpp
147
  src/scolplugin.cpp
148
)
149
150
# Add includes directories from dependencies
151
#  include_directories(include ${MYDEP_INCLUDE_DIRS})
152
153
# Add definition for P4 optimizations, warnings removal.
154
add_definitions(-DOPTI_P4 -D_CRT_SECURE_NO_WARNINGS -D)
155
156
# Add dependencies libraries
157
#  set(LIBRARIES
158
#    ${MYDEP_LIBRARIES}
159
#    ${ZLIB_LIBRARIES}
160
#    ${PNG_LIBRARIES}
161
#  )
162
163
# setup Scol plugin target
164
add_library(myPLugin
165
  ${Scol_LIB_TYPE}
166
  ${MYPLUGIN_HEADER_FILES}
167
  ${MYPLUGIN_SOURCE_FILES}
168
)
169
add_dependencies(myPLugin kernel)
170
171
# set the dll version.
172
set_target_properties(myPLugin PROPERTIES VERSION ${Scol_VERSION} SOVERSION ${Scol_VERSION_MAJOR})
173
target_link_libraries(myPLugin ${LIBRARIES})
174
175
# install Scol
176
scol_config_plugin(myPLugin)
177
install(FILES ${MYPLUGIN_HEADER_FILES} DESTINATION include/SCOL/plugins/myPLugin)
178
</pre>
179
180
Now we need to declare this new plugin in the common Scol cmake files.
181
Edit the trunk/scol/CMakeLists.txt file and add your plugin definition like the following.
182
183
If you don't have dependencies.
184
<pre>
185
option(Scol_BUILD_MYPLUGIN "Build myPluginplugin, my library" TRUE)
186
</pre>
187
188
If you have depencies
189
<pre>
190
cmake_dependent_option(Scol_BUILD_MYPLUGIN "Build myPlugin, my library." TRUE "MYDEP_FOUND;ZLIB_FOUND;PNG_FOUND" FALSE)
191
</pre>
192
193
Now edit the trunk/scol/plugin/CMakeLists.txt file and add the following.
194
<pre>
195
# Configure myPlugin plugin build
196
if (Scol_BUILD_MYPLUGIN)
197
  add_subdirectory(myPlugin)
198
endif ()
199
</pre>
200
201
Only if you have dependencies, edit the trunk/scol/CMake/ScolDependencies.cmake file and add the dependencies resolution as the following
202
203
<pre>
204
# Find MyDep
205
find_package(MYDEP)
206
macro_log_feature(MYDEP_FOUND "Mydep" "MydepLibrary" "http://Mydep.org/" FALSE "" "")
207
</pre>
208
209
h2. Almost done
210
211
Open the CMAKE-gui again.
212
Hit the "Configure button" and check if you found your plugin in the scol group.
213
Then hit the generate button, and open the scol.sln project again.
214
215
You should have the project added in Visual Studio.