Menu

Tree [486d77] master /
 History

HTTPS access


File Date Author Commit
 common 2012-12-03 Iulian Serbanoiu Iulian Serbanoiu [65090e] Using default program startup info; Fixed redir...
 info 2012-12-03 Iulian Serbanoiu Iulian Serbanoiu [c32b1e] Added info and option for cross compilation (bu...
 interview 2014-01-12 Iulian Serbanoiu Iulian Serbanoiu [111ad9] Added other useful code snippets
 python 2014-02-14 unknown unknown [45e4ef] script to get the allmusic album - by supplying...
 summerschool2013 2014-02-14 Iulian Serbanoiu Iulian Serbanoiu [486d77] summer school helper exercises
 tests 2014-01-12 Iulian Serbanoiu Iulian Serbanoiu [111ad9] Added other useful code snippets
 .gitignore 2012-11-03 Iulian Serbanoiu Iulian Serbanoiu [12ce85] Added .gitignore
 CMakeLists.txt 2012-12-03 Iulian Serbanoiu Iulian Serbanoiu [ad5081] Added cmake to project
 LICENSE 2012-11-04 Iulian Serbanoiu Iulian Serbanoiu [82c53d] Added license (FreeBSD license)
 README 2013-03-03 Iulian Serbanoiu Iulian Serbanoiu [5f01e8] Added a skeleton for keepbusy.py that will use ...
 Toolchain-cross-mingw32-linux.cmake 2012-12-03 Iulian Serbanoiu Iulian Serbanoiu [c32b1e] Added info and option for cross compilation (bu...
 make_pack.sh 2012-11-30 Iulian Serbanoiu Iulian Serbanoiu [86f4b4] Updated the pack creation method; everything is...

Read Me

===============
Why?

Because I need a place where to store little bits of code. Usually
these bits of code are always rewritten.

================
License

This software is under Simplified BSD license/FreeBSD license.
See LICENSE file for more details.

================
Portability

This code is portable to Linux and Windows at least. On other platforms I didn't
test. For Windows mingw32 compiler and Visual Studio compiler were used.

================
Quick Instructions (I assume you're in the root directory of source tree)

1. under GNU/Linux

  1a) build for linux

    mkdir _linux
    cd _linux
    cmake ..
    make

  1b) cross compile for Windows (change the toolchain according to your
      installation)

    mkdir _windows
    cd _windows
    cmake -DCMAKE_TOOLCHAIN_FILE=../Toolchain-cross-mingw32-linux.cmake ..
    make

2. under Windows you can generate projects for Visual Studio and compile from IDE