Renommage de forme ptf => skizzle
This commit is contained in:
parent
c59d6eac0e
commit
2f3880baf2
|
@ -3,7 +3,7 @@
|
|||
CMakeFiles
|
||||
CMakeCache.txt
|
||||
Makefile
|
||||
ptf
|
||||
skizzle
|
||||
cmake_install.cmake
|
||||
|
||||
*.aux
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
project(ptf)
|
||||
project(skizzle)
|
||||
|
||||
# Inclusion des fichiers d'en-tête et de source
|
||||
include_directories(include)
|
||||
|
@ -31,7 +31,7 @@ endif()
|
|||
|
||||
# Recherche des librairies
|
||||
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}" ${CMAKE_MODULE_PATH})
|
||||
add_executable(ptf ${SOURCES})
|
||||
add_executable(skizzle ${SOURCES})
|
||||
|
||||
find_package(SFML 2 REQUIRED system window graphics network audio)
|
||||
find_package(Boost 1.60.0 COMPONENTS system filesystem)
|
||||
|
@ -39,8 +39,8 @@ find_package(Boost 1.60.0 COMPONENTS system filesystem)
|
|||
include_directories(${SFML_INCLUDE_DIRS})
|
||||
include_directories(${Boost_INCLUDE_DIRS})
|
||||
|
||||
target_link_libraries(ptf ${SFML_LIBRARIES})
|
||||
target_link_libraries(ptf ${Boost_LIBRARIES})
|
||||
target_link_libraries(skizzle ${SFML_LIBRARIES})
|
||||
target_link_libraries(skizzle ${Boost_LIBRARIES})
|
||||
|
||||
# Installation de l'exécutable
|
||||
install(TARGETS ptf DESTINATION bin)
|
||||
install(TARGETS skizzle DESTINATION bin)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<div align="center">
|
||||
<img src="https://cdn.rawgit.com/matteodelabre/projet-cmi/master/docs/screenshots/03.png" alt="Capture d'écran du jeu" />
|
||||
<h1>projet-cmi</h1>
|
||||
<h1>Skizzle</h1>
|
||||
</div>
|
||||
|
||||
Arborescence :
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_BLOCK_HPP__
|
||||
#define __PTF_BLOCK_HPP__
|
||||
#ifndef __SKIZZLE_BLOCK_HPP__
|
||||
#define __SKIZZLE_BLOCK_HPP__
|
||||
|
||||
#include <SFML/Graphics.hpp>
|
||||
#include <memory>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_COLLISION_HPP__
|
||||
#define __PTF_COLLISION_HPP__
|
||||
#ifndef __SKIZZLE_COLLISION_HPP__
|
||||
#define __SKIZZLE_COLLISION_HPP__
|
||||
|
||||
#include <SFML/Graphics.hpp>
|
||||
#include <memory>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_CONSTANTS_HPP__
|
||||
#define __PTF_CONSTANTS_HPP__
|
||||
#ifndef __SKIZZLE_CONSTANTS_HPP__
|
||||
#define __SKIZZLE_CONSTANTS_HPP__
|
||||
|
||||
#include <SFML/System.hpp>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_EDITOR_HPP__
|
||||
#define __PTF_EDITOR_HPP__
|
||||
#ifndef __SKIZZLE_EDITOR_HPP__
|
||||
#define __SKIZZLE_EDITOR_HPP__
|
||||
|
||||
#include "level.hpp"
|
||||
#include "widget_timer.hpp"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_FINISH_BLOCK_HPP__
|
||||
#define __PTF_FINISH_BLOCK_HPP__
|
||||
#ifndef __SKIZZLE_FINISH_BLOCK_HPP__
|
||||
#define __SKIZZLE_FINISH_BLOCK_HPP__
|
||||
|
||||
#include <SFML/Graphics.hpp>
|
||||
#include <memory>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_KILL_BLOCK_HPP__
|
||||
#define __PTF_KILL_BLOCK_HPP__
|
||||
#ifndef __SKIZZLE_KILL_BLOCK_HPP__
|
||||
#define __SKIZZLE_KILL_BLOCK_HPP__
|
||||
|
||||
#include <SFML/Graphics.hpp>
|
||||
#include <memory>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_LEVEL_HPP__
|
||||
#define __PTF_LEVEL_HPP__
|
||||
#ifndef __SKIZZLE_LEVEL_HPP__
|
||||
#define __SKIZZLE_LEVEL_HPP__
|
||||
|
||||
#include <fstream>
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_MANAGER_HPP__
|
||||
#define __PTF_MANAGER_HPP__
|
||||
#ifndef __SKIZZLE_MANAGER_HPP__
|
||||
#define __SKIZZLE_MANAGER_HPP__
|
||||
|
||||
#include "resource_manager.hpp"
|
||||
#include "state.hpp"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_OBJECT_HPP__
|
||||
#define __PTF_OBJECT_HPP__
|
||||
#ifndef __SKIZZLE_OBJECT_HPP__
|
||||
#define __SKIZZLE_OBJECT_HPP__
|
||||
|
||||
#include <SFML/Graphics.hpp>
|
||||
#include <fstream>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_RESOURCE_MANAGER_HPP__
|
||||
#define __PTF_RESOURCE_MANAGER_HPP__
|
||||
#ifndef __SKIZZLE_RESOURCE_MANAGER_HPP__
|
||||
#define __SKIZZLE_RESOURCE_MANAGER_HPP__
|
||||
|
||||
#include <SFML/Graphics.hpp>
|
||||
#include <SFML/Audio.hpp>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_STATE_HPP__
|
||||
#define __PTF_STATE_HPP__
|
||||
#ifndef __SKIZZLE_STATE_HPP__
|
||||
#define __SKIZZLE_STATE_HPP__
|
||||
|
||||
#include <SFML/Graphics.hpp>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_UTIL_WIDGET_BUTTON_HPP__
|
||||
#define __PTF_UTIL_WIDGET_BUTTON_HPP__
|
||||
#ifndef __SKIZZLE_UTIL_WIDGET_BUTTON_HPP__
|
||||
#define __SKIZZLE_UTIL_WIDGET_BUTTON_HPP__
|
||||
|
||||
#include <SFML/Graphics.hpp>
|
||||
#include <functional>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PTF_UTIL_WIDGET_TOOLBAR_HPP__
|
||||
#define __PTF_UTIL_WIDGET_TOOLBAR_HPP__
|
||||
#ifndef __SKIZZLE_UTIL_WIDGET_TOOLBAR_HPP__
|
||||
#define __SKIZZLE_UTIL_WIDGET_TOOLBAR_HPP__
|
||||
|
||||
#include <SFML/Graphics.hpp>
|
||||
#include <functional>
|
||||
|
|
Loading…
Reference in New Issue