This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################## | |
# Project name | |
TARGET = colorist | |
# Compiler and flags | |
CC = LD_LIBRARY_PATH="/opt/gcc-4.9.3/lib" /opt/gcc-4.9.3/bin/g++ | |
CFLAGS = -Wall -g -std=c++14 -I /opt/gcc-4.9.3/include -L /opt/gcc-4.9.3/lib | |
# Catch unit testing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <string> | |
#include <functional> | |
#include <map> | |
#include <iostream> | |
#include <memory> | |
template <typename T> class TypedOption; | |
class Option | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP TABLE IF EXISTS ETUDIANT; | |
DROP TABLE IF EXISTS PROF; | |
DROP TABLE IF EXISTS MODULE; | |
DROP TABLE IF EXISTS ENSEIGNT; | |
DROP TABLE IF EXISTS NOTATION; | |
CREATE TABLE ETUDIANT | |
( | |
NUM_ET INT(6) PRIMARY KEY AUTO_INCREMENT, | |
NOM_ET VARCHAR(20), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CC = g++ -std=c++0x | |
EXECUTABLE := exo_01.run | |
INCLUDE := include | |
SOURCES := $(wildcard dirsignal/*.cxx) | |
OBJECTS := $(patsubst dirsignal/%.cxx, %.o, $(SOURCES)) | |
all: $(EXECUTABLE) | |
clean : |
NewerOlder