Renommage de forme ptf => skizzle

This commit is contained in:
Mattéo Delabre 2016-04-11 23:38:03 +02:00
parent c59d6eac0e
commit 2f3880baf2
16 changed files with 33 additions and 33 deletions

2
.gitignore vendored
View File

@ -3,7 +3,7 @@
CMakeFiles
CMakeCache.txt
Makefile
ptf
skizzle
cmake_install.cmake
*.aux

10
CMakeLists.txt vendored
View File

@ -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)

View File

@ -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 :

View File

@ -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>

View File

@ -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>

View File

@ -1,5 +1,5 @@
#ifndef __PTF_CONSTANTS_HPP__
#define __PTF_CONSTANTS_HPP__
#ifndef __SKIZZLE_CONSTANTS_HPP__
#define __SKIZZLE_CONSTANTS_HPP__
#include <SFML/System.hpp>

View File

@ -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"

View File

@ -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>

View File

@ -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>

View File

@ -1,5 +1,5 @@
#ifndef __PTF_LEVEL_HPP__
#define __PTF_LEVEL_HPP__
#ifndef __SKIZZLE_LEVEL_HPP__
#define __SKIZZLE_LEVEL_HPP__
#include <fstream>
#include <vector>

View File

@ -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"

View File

@ -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>

View File

@ -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>

View File

@ -1,5 +1,5 @@
#ifndef __PTF_STATE_HPP__
#define __PTF_STATE_HPP__
#ifndef __SKIZZLE_STATE_HPP__
#define __SKIZZLE_STATE_HPP__
#include <SFML/Graphics.hpp>

View File

@ -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>

View File

@ -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>