Fixed template
This commit is contained in:
@@ -3,7 +3,11 @@ project(LotoStatek)
|
|||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 17)
|
set(CMAKE_CXX_STANDARD 17)
|
||||||
|
|
||||||
add_executable(LotoStatek main.cpp)
|
add_executable(LotoStatek main.cpp
|
||||||
|
headers/Actor.h
|
||||||
|
headers/Plansza.h
|
||||||
|
sources/Actor.cpp
|
||||||
|
sources/Plansza.cpp)
|
||||||
|
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
set(SFML_ROOT "${CMAKE_SOURCE_DIR}/SFML")
|
set(SFML_ROOT "${CMAKE_SOURCE_DIR}/SFML")
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
#ifndef OBJECT_MOVING_H
|
#ifndef ACTOR_H
|
||||||
#define OBJECT_MOVING_H
|
#define ACTOR_H
|
||||||
|
|
||||||
class Actor {
|
class Actor {
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif //OBJECT_MOVING_H
|
};
|
||||||
|
|
||||||
|
#endif //ACTOR_H
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
#include "object_moving.h"
|
#include "../headers/actor.h"
|
||||||
@@ -1 +1 @@
|
|||||||
#include "Plansza.h"
|
#include "../headers/Plansza.h"
|
||||||
|
|||||||
Reference in New Issue
Block a user