Umsortieren

This commit is contained in:
Johannes Theiner 2018-08-19 18:30:13 +02:00
parent 41cc53f8a1
commit ecef6c0aed
50 changed files with 26 additions and 18 deletions

0
01_ENV/build-c.sh → 01_ENV/MP/build-c.sh Executable file → Normal file
View File

0
01_ENV/build.sh → 01_ENV/MP/build.sh Executable file → Normal file
View File

0
01_ENV/clean.sh → 01_ENV/MP/clean.sh Executable file → Normal file
View File

0
02_MENT/build.sh → 02_MENT/MP/build.sh Executable file → Normal file
View File

View File

@ -3,7 +3,7 @@
#include <iostream>
#include "../helpers/println.hpp"
#include "../../helpers/println.hpp"
struct PascalString{
int length; // number of chars used

2
03_FLOW_a/build.sh → 03_FLOW_a/MP/build.sh Executable file → Normal file
View File

@ -2,4 +2,4 @@
rm *.out
clang++-6.0 -std=c++14 -I ../helpers -o flow.out main_mp2_FLOW_a.cpp ../helpers/AnsiConsole.cpp
./flow.out
./flow.out

View File

@ -1,5 +1,5 @@
// file: main_04_UDEF_a.cpp
#include "../helpers/println.hpp"
#include "../../helpers/println.hpp"
#include "RationalNumber.hpp"
// location 1

View File

@ -1,5 +1,5 @@
// file main_04_UDEF_e.cpp
#include "../helpers/println.hpp"
#include "../../helpers/println.hpp"
#include <iostream>
const int bitsPerOctet = 8;

View File

@ -1,6 +1,6 @@
#include <iostream>
#include <cmath>
#include "../helpers/AnsiConsole.h"
#include "../../helpers/AnsiConsole.h"
struct Position {
int x;

View File

@ -1,7 +1,7 @@
#include <iostream>
#include <cassert>
#include <vector>
#include "../helpers/println.hpp"
#include "../../helpers/println.hpp"
struct StackObject {

View File

@ -1,28 +1,36 @@
cmake_minimum_required(VERSION 3.3)
project(test_build)
project(C/C++)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14")
add_executable(MentalModel 02_MENT/main_02_MENT.cpp)
add_executable(01_ENV_MP 01_ENV/MP/main.c 01_ENV/MP/func1.c)
add_executable(01_ENV_Testat 01_ENV/Testat/main.c 01_ENV/Testat/func1.c)
add_executable(UDEF_1 04_UDEF/main_04_UDEF_e.cpp)
#add_executable(UDEF_2 04_UDEF/main_04_UDEF_a.cpp)
add_executable(02_MENT_MP 02_MENT/MP/main_02_MENT.cpp)
add_executable(02_MENT_Testat_1 02_MENT/Testat/main_02_MENT.cpp)
add_executable(02_MENT_Testat_2 02_MENT/Testat2/main_02_MENT.cpp)
add_executable(03_FLOW_MP 03_FLOW_a/MP/main_mp2_FLOW_a.cpp)
add_executable(03_FLOW_Testat 03_FLOW_a/Testat/main_mp2_FLOW_a.cpp)
add_executable(UDEF_MP_1 04_UDEF/MP/main_04_UDEF_e.cpp)
add_executable(UDEF_MP_2 04_UDEF/MP/main_04_UDEF_a.cpp)
add_executable(UDEF_Testat 04_UDEF/Testat/Testat.cpp)
add_executable(OO_A 05_OO/main_mp4_OO_a_vehicles.cpp)
add_executable(OO_5_MP 05_OO/MP/main_mp4_OO_a_vehicles.cpp)
#add_executable(OO_5_Testat 05_OO/Testat/)
#add_executable(OO_B 05_OO/main_mp4_OO_b.cpp)
#add_executable(OO_Shapes 05_OO/shapes_main.cpp)
add_executable(Poly 06_POLY/main_mp5_POLY.cpp)
add_executable(06_POLY 06_POLY/MP/main_mp5_POLY.cpp)
add_executable(SequenceDiagram 11_PUTT/05_OO_b/SequenceDiagramCreator.cpp 11_PUTT/05_OO_b/main.cpp)
#add_executable(SequenceDiagram 11_PUTT/05_OO_b/SequenceDiagramCreator.cpp 11_PUTT/05_OO_b/main.cpp)
add_executable(LCDDisplay 11_PUTT/02_Ment/LCDDisplay.cpp)
#add_executable(LCDDisplay 11_PUTT/02_Ment/LCDDisplay.cpp)
add_executable(CopyOnWrite 11_PUTT/CopyOnWrite/OneByOneMatrix.cpp 11_PUTT/CopyOnWrite/LargeCowMatrix.cpp 11_PUTT/CopyOnWrite/main.cpp)
#add_executable(CopyOnWrite 11_PUTT/CopyOnWrite/OneByOneMatrix.cpp 11_PUTT/CopyOnWrite/LargeCowMatrix.cpp 11_PUTT/CopyOnWrite/main.cpp)
add_executable(Banking 10_PITF/banking_base_rawptr.cpp)
#add_executable(Banking 10_PITF/MP/banking_base_rawptr.cpp)
add_executable(Test 11_PUTT/Test.cpp)
#add_executable(Test 11_PUTT/Test.cpp)