Files
Dennis Brakhane bf790a46d3 cmake: replace explicit list of files with globs (#887)
CMake recommends against doing this because some build systems
might not support CONFIGURE_DEPENDS. But currently, the ones
we care about (Make, Ninja) do, and if there's ever a problem,
we can just start listing them again.

Using globs has the advantage that the linux build will not break
when a file is added in VS and somebody forgets to add the file to
cmakelists as well. I've also found some instances were some *.h
files were not listed, which means they weren't copied when installing.
2024-07-18 13:26:42 +02:00
..
2023-05-23 16:14:24 +02:00

This is a template project showing the minumum setup required to set up an application using Wicked Engine.

Contents of interest:
	- stdafx.h
		This is the precompiled header file, WickedEngine.h has been included here
	- main.cpp
		This is the windows application entry point. The MainComponent has been created here, this is the engine runtime component.
		main.SetWindow() and main.Run() functions are called here which are necessary to setting up an application.