How to compile it?

147 views
Skip to first unread message

Iuri

unread,
Feb 26, 2012, 11:52:29 AM2/26/12
to fluorescence-client
I am having problem to compile it on Debian 6 Gnu/Linux. Do I need to
create the 'build' directory? And I believe that I need to use cmake
command in some place (src/ ?). "make debug" or "make release" don't
have any progress on compilation.

What I think tha must be done to compile it is: enter in 'src/'
directory, do 'cmake .', make and finally make install. Or create
build directory, do 'cmake ../', make and make install. But in both
case I get error.

In first case i get:
Scanning dependencies of target fluorescence
[ 0%] Building CXX object fluorescence/CMakeFiles/fluorescence.dir/
data/fullfileloader.o
In file included from /home/iuri/fluorescence/src/fluorescence/data/
fullfileloader.cpp:21:
/home/iuri/fluorescence/src/fluorescence/data/fullfileloader.hpp:
23:30: error: misc/exception.hpp: Arquivo ou diretório não encontrado
/home/iuri/fluorescence/src/fluorescence/data/fullfileloader.cpp: In
constructor ‘fluo::data::FullFileLoader::FullFileLoader(const
boost::filesystem3::path&)’:
/home/iuri/fluorescence/src/fluorescence/data/fullfileloader.cpp:28:
error: ‘Exception’ was not declared in this scope
/home/iuri/fluorescence/src/fluorescence/data/fullfileloader.cpp: In
member function ‘void
fluo::data::FullFileLoader::read(boost::function<void(int8_t*,
unsigned int)>)’:
/home/iuri/fluorescence/src/fluorescence/data/fullfileloader.cpp:49:
error: ‘Exception’ was not declared in this scope
make[2]: ** [fluorescence/CMakeFiles/fluorescence.dir/data/
fullfileloader.o] Erro 1
make[1]: ** [fluorescence/CMakeFiles/fluorescence.dir/all] Erro 2
make: ** [all] Erro 2

In second case i get:
[ 65%] Building CXX object src/fluorescence/CMakeFiles/
fluorescence.dir/ui/uofontprovider.cpp.o
cc1plus: warnings being treated as errors
/home/iuri/fluorescence/src/fluorescence/ui/uofontprovider.cpp: In
member function ‘virtual int
fluo::ui::UoFontProvider::get_character_index(CL_GraphicContext&,
const CL_String&, const CL_Point&)’:
/home/iuri/fluorescence/src/fluorescence/ui/uofontprovider.cpp:108:
error: comparison between signed and unsigned integer expressions
make[2]: ** [src/fluorescence/CMakeFiles/fluorescence.dir/ui/
uofontprovider.cpp.o] Erro 1
make[1]: ** [src/fluorescence/CMakeFiles/fluorescence.dir/all] Erro 2
make: ** [all] Erro 2

spin

unread,
Feb 26, 2012, 2:04:03 PM2/26/12
to fluoresce...@googlegroups.com
Hi,

to compile the client:
- Create a directory "build"
- Change to directory "src". Not "build/src"
- Execute "make release" or "make debug". There is a small makefile
helper in the src folder that runs cmake and builds the whole client.
You can take a look inside if you want to know the cmake commands.

But you don't need to execute cmake by hand. If you did, I recommend to
remove all the contents of the build folder before you start compiling
again.

Hope that helps,
spin


On 02/26/2012 05:52 PM, Iuri wrote:
> I am having problem to compile it on Debian 6 Gnu/Linux. Do I need to
> create the 'build' directory? And I believe that I need to use cmake
> command in some place (src/ ?). "make debug" or "make release" don't
> have any progress on compilation.
>
> What I think tha must be done to compile it is: enter in 'src/'
> directory, do 'cmake .', make and finally make install. Or create
> build directory, do 'cmake ../', make and make install. But in both
> case I get error.
>
> In first case i get:
> Scanning dependencies of target fluorescence
> [ 0%] Building CXX object fluorescence/CMakeFiles/fluorescence.dir/
> data/fullfileloader.o
> In file included from /home/iuri/fluorescence/src/fluorescence/data/
> fullfileloader.cpp:21:
> /home/iuri/fluorescence/src/fluorescence/data/fullfileloader.hpp:

> 23:30: error: misc/exception.hpp: Arquivo ou diret�rio n�o encontrado
> /home/iuri/fluorescence/src/fluorescence/data/fullfileloader.cpp: In
> constructor �fluo::data::FullFileLoader::FullFileLoader(const
> boost::filesystem3::path&)�:
> /home/iuri/fluorescence/src/fluorescence/data/fullfileloader.cpp:28:
> error: �Exception� was not declared in this scope
> /home/iuri/fluorescence/src/fluorescence/data/fullfileloader.cpp: In
> member function �void


> fluo::data::FullFileLoader::read(boost::function<void(int8_t*,

> unsigned int)>)�:
> /home/iuri/fluorescence/src/fluorescence/data/fullfileloader.cpp:49:
> error: �Exception� was not declared in this scope


> make[2]: ** [fluorescence/CMakeFiles/fluorescence.dir/data/
> fullfileloader.o] Erro 1
> make[1]: ** [fluorescence/CMakeFiles/fluorescence.dir/all] Erro 2
> make: ** [all] Erro 2
>
> In second case i get:
> [ 65%] Building CXX object src/fluorescence/CMakeFiles/
> fluorescence.dir/ui/uofontprovider.cpp.o
> cc1plus: warnings being treated as errors
> /home/iuri/fluorescence/src/fluorescence/ui/uofontprovider.cpp: In

> member function �virtual int
> fluo::ui::UoFontProvider::get_character_index(CL_GraphicContext&,
> const CL_String&, const CL_Point&)�:

Iuri

unread,
Feb 26, 2012, 7:09:06 PM2/26/12
to fluorescence-client
Well, no Makefile here. I will show all output from terminal.

iuri@lucifer:~$ git clone https://code.google.com/p/fluorescence/
Cloning into fluorescence...
remote: Counting objects: 5363, done.
remote: Finding sources: 100% (5363/5363), done.
remote: Total 5363 (delta 3982)
Receiving objects: 100% (5363/5363), 1.20 MiB | 435 KiB/s, done.
Resolving deltas: 100% (3982/3982), done.
iuri@lucifer:~$ cd fluorescence/src/
iuri@lucifer:~/fluorescence/src$ ls
CMakeLists.txt fluorescence
iuri@lucifer:~/fluorescence/src$ make
make: *** No targets specified and no makefile found. Stop.
> > 23:30: error: misc/exception.hpp: Arquivo ou diret rio n o encontrado
> > /home/iuri/fluorescence/src/fluorescence/data/fullfileloader.cpp: In
> > constructor fluo::data::FullFileLoader::FullFileLoader(const
> > boost::filesystem3::path&) :
> > /home/iuri/fluorescence/src/fluorescence/data/fullfileloader.cpp:28:
> > error: Exception was not declared in this scope
> > /home/iuri/fluorescence/src/fluorescence/data/fullfileloader.cpp: In
> > member function void
> > fluo::data::FullFileLoader::read(boost::function<void(int8_t*,
> > unsigned int)>) :
> > /home/iuri/fluorescence/src/fluorescence/data/fullfileloader.cpp:49:
> > error: Exception was not declared in this scope
> > make[2]: ** [fluorescence/CMakeFiles/fluorescence.dir/data/
> > fullfileloader.o] Erro 1
> > make[1]: ** [fluorescence/CMakeFiles/fluorescence.dir/all] Erro 2
> > make: ** [all] Erro 2
>
> > In second case i get:
> > [ 65%] Building CXX object src/fluorescence/CMakeFiles/
> > fluorescence.dir/ui/uofontprovider.cpp.o
> > cc1plus: warnings being treated as errors
> > /home/iuri/fluorescence/src/fluorescence/ui/uofontprovider.cpp: In
> > member function virtual int
> > fluo::ui::UoFontProvider::get_character_index(CL_GraphicContext&,
> > const CL_String&, const CL_Point&) :

spin

unread,
Feb 27, 2012, 3:34:20 AM2/27/12
to fluoresce...@googlegroups.com
I'm really sorry, the Makefile was excluded by my .gitignore.
It is in the repository now.

Iuri

unread,
Feb 27, 2012, 3:09:31 PM2/27/12
to fluorescence-client
Oh right.
Well, now I get problem in other place. I get error in compilation.
Look the output:

[ 1%] Building CXX object src/fluorescence/CMakeFiles/
fluorescence.dir/ui/uofontprovider.cpp.o
cc1plus: warnings being treated as errors
/home/iuri/fluorescence/src/fluorescence/ui/uofontprovider.cpp: In
member function 'virtual int
fluo::ui::UoFontProvider::get_character_index(CL_GraphicContext&,
const CL_String&, const CL_Point&)':
/home/iuri/fluorescence/src/fluorescence/ui/uofontprovider.cpp:108:
error: comparison between signed and unsigned integer expressions
make[3]: *** [src/fluorescence/CMakeFiles/fluorescence.dir/ui/
uofontprovider.cpp.o] Error 1
make[3]: Leaving directory `/home/iuri/fluorescence/build'
make[2]: *** [src/fluorescence/CMakeFiles/fluorescence.dir/all] Error
2
make[2]: Leaving directory `/home/iuri/fluorescence/build'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/iuri/fluorescence/build'
make: *** [release] Error 2


On 27 fev, 05:34, spin <s...@fluorescence-client.org> wrote:
> I'm really sorry, the Makefile was excluded by my .gitignore.
> It is in the repository now.
>
> On 02/27/2012 01:09 AM, Iuri wrote:
>
> > Well, no Makefile here. I will show all output from terminal.
>
> > iuri@lucifer:~$ git clonehttps://code.google.com/p/fluorescence/

spin

unread,
Feb 27, 2012, 3:21:05 PM2/27/12
to fluoresce...@googlegroups.com
Hm, that file compiles fine for me. Which g++ version are you using? I
work with g++ 4.6.1 on a 32bit Linux Mint 12.

Iuri

unread,
Feb 27, 2012, 7:20:48 PM2/27/12
to fluorescence-client
gcc (Debian 4.4.5-8) 4.4.5

spin

unread,
Feb 28, 2012, 1:53:27 AM2/28/12
to fluoresce...@googlegroups.com
Just tested it on my machine. g++-4.4 seems to work a little different
when it comes to signed/unsigned comparisons.
I changed the few errors that popped up with 4.4 in the latest version,
so you can test it.

However, I recommend upgrading to 4.6 soon. I will most likely enforce
this version in the cmake file in the near future to avoid errors, as I
plan to use more c++11 features.

Iuri

unread,
Feb 28, 2012, 8:26:41 PM2/28/12
to fluorescence-client
I understand. I use this version becouse this is the versionthat comes
with debian stable. I don't know if exist any way to update gcc
easily. I will look.
Now I am getting another error and don't know if the problem is with
gcc version too.

[ 0%] Building CXX object src/fluorescence/CMakeFiles/
fluorescence.dir/ui/xmlparser.cpp.o
/home/iuri/fluorescence/src/fluorescence/ui/xmlparser.cpp: In member
function 'fluo::ui::GumpMenu*
fluo::ui::XmlParser::fromXml(pugi::xml_document&,
fluo::ui::GumpMenu*)':
/home/iuri/fluorescence/src/fluorescence/ui/xmlparser.cpp:200: error:
'class fluo::ui::GumpMenu' has no member named
'set_stay_in_background'
/home/iuri/fluorescence/src/fluorescence/ui/xmlparser.cpp:202: error:
'class fluo::ui::GumpMenu' has no member named
'set_stay_in_background'
make[3]: *** [src/fluorescence/CMakeFiles/fluorescence.dir/ui/
xmlparser.cpp.o] Error 1
make[3]: Leaving directory `/home/iuri/fluorescence/build'
make[2]: *** [src/fluorescence/CMakeFiles/fluorescence.dir/all] Error
2
make[2]: Leaving directory `/home/iuri/fluorescence/build'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/iuri/fluorescence/build'
make: *** [release] Error 2

Thanks

spin

unread,
Feb 29, 2012, 2:21:57 AM2/29/12
to fluoresce...@googlegroups.com
"set_stay_in_background" is one of my patches to clanlib. Did you apply
the patch file for clanlib? Also, did you execute make install afterwards?

Iuri

unread,
Feb 29, 2012, 6:46:23 AM2/29/12
to fluorescence-client
it's patched. I instaled clanib in /usr/local. Is it ok?

spin

unread,
Feb 29, 2012, 7:04:37 AM2/29/12
to fluoresce...@googlegroups.com
Did you install an unpatched version of clanlib as well? It looks to me
like the cmake script finds an unpatched version.
You can also check the cmake/FindClanLib.cmake script to debug what is
happening.

Iuri

unread,
Feb 29, 2012, 8:27:06 PM2/29/12
to fluorescence-client
I will try to compile again. Do you instale ClanLib in /usr or /usr/
local?
cmake/FindClanLib.cmake returns that cant find it but I have it
instaled in /usr and /usr/local

Iuri

unread,
Feb 29, 2012, 8:28:04 PM2/29/12
to fluorescence-client
-- Checking for ClanLib
-- Checking for ClanLib -- headers
-- Checking for ClanCore
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanCore -- not found
-- Checking for other ClanLib components
-- Checking for ClanApp
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanApp -- not found
-- Checking for ClanCore
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanCore -- not found
-- Checking for ClanCSSLayout
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanCSSLayout -- not found
-- Checking for ClanDatabase
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanDatabase -- not found
-- Checking for ClanDisplay
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanDisplay -- not found
-- Checking for ClanGL
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanGL -- not found
-- Checking for ClanGL1
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanGL1 -- not found
-- Checking for ClanGUI
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanGUI -- not found
-- Checking for ClanMikMod
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanMikMod -- not found
-- Checking for ClanNetwork
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanNetwork -- not found
-- Checking for ClanRegExp
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanRegExp -- not found
-- Checking for ClanSound
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanSound -- not found
-- Checking for ClanSqlite
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanSqlite -- not found
-- Checking for ClanSWRender
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanSWRender -- not found
-- Checking for ClanVorbis
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_PREFIXES
CMake Error: Error required internal CMake variable not set, cmake may
be not be built correctly.
Missing variable is:
CMAKE_FIND_LIBRARY_SUFFIXES
-- Checking for ClanVorbis -- not found


On 29 fev, 09:04, spin <s...@fluorescence-client.org> wrote:

spin

unread,
Mar 1, 2012, 3:22:54 AM3/1/12
to fluoresce...@googlegroups.com
I installed it to /usr/local. But /usr should also work. cmake should
find it in either place.
About the cmake error, I don't know. I also can't reproduce that on my
machine. Maybe another version problem? I'm working with cmake 2.8.5.
Did you try googling the error?

Despite the errors of the cmake helper, the compiler somehow finds at
least the clanlib includes, because it does not complain about missing
header files. But the compiler error indicates that the patch was not
applied to those headers.

Iuri

unread,
Mar 1, 2012, 6:43:15 AM3/1/12
to fluorescence-client
To apply patch I used following command: 'patch -p1 < clanlib.patch'
in ClanLib-2.3.5/ directory. No errors returned. Is this the right
command. I have clanlib.patch in ClanLib-2.3.5/.
My cmake version is 2.8.2.

Iuri

unread,
Mar 1, 2012, 6:57:27 AM3/1/12
to fluorescence-client
Now I know what is going on. My clanlib.patch was blank. I don't know
why! I make a copy again to clanlib directory an now i get some
errors! Look:

patching file GUI/gui_component.cpp
Hunk #1 FAILED at 602.
Hunk #2 FAILED at 1377.
2 out of 2 hunks FAILED -- saving rejects to file GUI/
gui_component.cpp.rej
patching file GUI/Theme/gui_theme_part_impl.h
Hunk #1 FAILED at 152.
1 out of 1 hunk FAILED -- saving rejects to file GUI/Theme/
gui_theme_part_impl.h.rej
patching file GUI/Theme/gui_theme_part.cpp
Hunk #1 FAILED at 191.
1 out of 1 hunk FAILED -- saving rejects to file GUI/Theme/
gui_theme_part.cpp.rej
patching file GUI/WindowManager/
gui_window_manager_provider_texture.cpp
Hunk #1 FAILED at 245.
1 out of 1 hunk FAILED -- saving rejects to file GUI/WindowManager/
gui_window_manager_provider_texture.cpp.rej
patching file GUI/gui_component_impl.cpp
Hunk #1 FAILED at 42.
1 out of 1 hunk FAILED -- saving rejects to file GUI/
gui_component_impl.cpp.rej
patching file GUI/gui_component_impl.h
Hunk #1 FAILED at 115.
1 out of 1 hunk FAILED -- saving rejects to file GUI/
gui_component_impl.h.rej
patching file API/GUI/gui_component.h
Hunk #1 FAILED at 62.
Hunk #2 FAILED at 318.
Hunk #3 FAILED at 544.
3 out of 3 hunks FAILED -- saving rejects to file API/GUI/
gui_component.h.rej
> ...
>
> mais »

spin

unread,
Mar 2, 2012, 8:04:54 AM3/2/12
to fluoresce...@googlegroups.com
I use patch -p0 -i <path to clanlib.patch> in the clanlib root folder,
but it should amount to the same.

Sorry, no idea what this problem is about.
I can only recommend starting the compilation process from scratch.

>> mais �

Iuri

unread,
Mar 2, 2012, 9:40:03 AM3/2/12
to fluorescence-client
Great! 'patch -p0 -i <path to clanlib.patch>' works well. I think you
can put it on documentation about how to compile fluorescence.
Fluorescence compiled and working but... I think I must set UO
dorectory in some config file. Is true? I can start fluorescence but
when I try to conecct I get an error:

0.400851 [DEBUG]: Parsing xml gump file: gumps/shardselection.xml
0.486754 [INFO ]: Selecting shard through user interface
2.127680 [ERROR]: Unknown gump action: createshard
5.103035 [ERROR]: Unknown gump action: createshard
5.621452 [ERROR]: Unknown gump action: createshard
5.722506 [ERROR]: Unknown gump action: createshard
7.595085 [INFO ]: Selected shard: example
7.595172 [INFO ]: Parsing shard config
7.595772 [INFO ]: Creating data loaders
7.595911 [EMERG]: Error initializing data::Manager: Invalid mul
directory
7.595951 [INFO ]: ui::Manager shutdown
7.599967 [INFO ]: data::Manager shutdown
7.600167 [INFO ]: Saving config
7.600700 [INFO ]: end of Client::main

Thanks!
> ...
>
> mais »

Iuri

unread,
Mar 2, 2012, 9:58:10 AM3/2/12
to fluorescence-client
Changed uo pach here but character isn't walking well. Practicaly
don't move is walking very slowly. And have some rendering problems
with trees.
> ...
>
> mais »

spin

unread,
Mar 2, 2012, 11:12:33 AM3/2/12
to fluoresce...@googlegroups.com
Yeah, I should probably add a wiki page on how to set up the client
folder and connect to a shard. And remove the misleading "create shard"
button, that actually does nothing :)

As the project site on google code says, walking is not finished yet.
But as I am currently working on the calking code, improvements will be
published soon.
The rendering, however, should work fine. If you encounter any rendering
problems, please create tickets with screenshots in the issue tracker.

>> mais �

Iuri

unread,
Mar 2, 2012, 9:56:41 PM3/2/12
to fluoresce...@googlegroups.com
I really apretiate your work! Will post screenshot on bug tracker.
Waiting walk progress.
Thanks!

>> mais �

DarkLotus

unread,
Mar 9, 2012, 9:04:59 AM3/9/12
to fluorescence-client
Awesome to see another client being made, just wanted to say im at
least one more person watching with interest :)
> ...
>
> read more »

Iuri

unread,
Jul 12, 2012, 9:31:00 PM7/12/12
to fluoresce...@googlegroups.com
Makefile in src/ is missing again.

spin

unread,
Jul 13, 2012, 2:56:22 AM7/13/12
to fluoresce...@googlegroups.com
As there are two projects now, each one has its own Makefile. They are
in src/fluorescence and src/updater.
Reply all
Reply to author
Forward
0 new messages