Skip to content

fburgerdev/wndw

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wndw

C++ library for ...

describe your project ...

Dependancies

Usage

Use Case 1

    #include<iostream>

    int main() {
        std::cout << "Hello World!" << std::endl;
        return EXIT_SUCCESS;
    }

Include this Library

In your c++ project

  • add include/wndw to your include directories
  • add lib/[config] to your library directories (depending on your configuration)
  • link the library libwndw.a (for linux) and wndw.lib (for windows)

In order to resolve the dependancies

  • for vecmath
    • add modules/vecmath/lib/[config] to your include directories
    • link the library libvecmath.a or vecmath.lib

Build (Optional)

Using Linux (Debian)

Locate the build folder, then execute the following command in the console:

make config=[config]

If you have not installed make:

sudo apt-get install make -y

Using Windows

Open the build/wndw.sln solution with Visual Studio.

After selecting your desired configuration, click on Build > Build Solution.

Note: Make sure you have the Desktop developement with C++ workload installed.