mirror of
https://github.com/Andreabont/OpenMandelbrot.git
synced 2025-04-20 14:30:51 +00:00
Rename
This commit is contained in:
parent
adba3efab5
commit
016f42c086
4 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g")
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g")
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -ffast-math -fopenmp")
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -ffast-math -fopenmp")
|
||||||
|
|
||||||
add_executable(${EXECUTABLE_NAME} main.cpp functions.hpp Fractal.hpp Fractal.cpp)
|
add_executable(${EXECUTABLE_NAME} main.cpp Functions.hpp Fractal.hpp Fractal.cpp)
|
||||||
|
|
||||||
#Find Boost
|
#Find Boost
|
||||||
set(BOOST_LIBS program_options)
|
set(BOOST_LIBS program_options)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <complex>
|
#include <complex>
|
||||||
#include <SFML/Graphics.hpp>
|
#include <SFML/Graphics.hpp>
|
||||||
#include "functions.hpp"
|
#include "Functions.hpp"
|
||||||
|
|
||||||
struct Domain {
|
struct Domain {
|
||||||
|
|
||||||
|
|
2
main.cpp
2
main.cpp
|
@ -8,7 +8,7 @@
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
|
|
||||||
#include "functions.hpp"
|
#include "Functions.hpp"
|
||||||
#include "Fractal.hpp"
|
#include "Fractal.hpp"
|
||||||
|
|
||||||
const double DOMAIN_X_MIN = -2.0;
|
const double DOMAIN_X_MIN = -2.0;
|
||||||
|
|
Loading…
Reference in a new issue