Browse Source

Use CMake

Marcelo Fornet 5 years ago
parent
commit
da1bc3b21e
7 changed files with 24 additions and 7 deletions
  1. 5 0
      .gitignore
  2. 7 0
      CMakeLists.txt
  3. 4 2
      circle.h
  4. 3 2
      circle_shape.cpp
  5. 2 0
      circle_shape.h
  6. 1 1
      main.cpp
  7. 2 2
      rectangle_shape.cpp

+ 5 - 0
.gitignore

@@ -0,0 +1,5 @@
+CMakeFiles/
+app
+CMakeCache.txt
+*.cmake
+Makefile

+ 7 - 0
CMakeLists.txt

@@ -0,0 +1,7 @@
+cmake_minimum_required(VERSION 2.4)
+
+set(CMAKE_CXX_STANDARD 17)
+project(hello_world)
+
+include_directories(${PROJECT_SOURCE_DIR})
+add_executable(app main.cpp circle_shape.cpp rectangle_shape.cpp)

+ 4 - 2
circle.h

@@ -1,5 +1,7 @@
-// circle.h
+#ifndef CIRCLE_H
+#define CIRCLE_H
 struct Circle
 {
     const double radius = 4.0;
-};
+};
+#endif

+ 3 - 2
circle_shape.cpp

@@ -1,4 +1,5 @@
-// circle_shape.cpp
+#include "circle.h"
+
 namespace ShapeImpl
 {
 double area(const Circle &circle)
@@ -6,4 +7,4 @@ double area(const Circle &circle)
     double r = circle.radius;
     return 3.14 * r * r;
 }
-} // namespace ShapeImpl
+}

+ 2 - 0
circle_shape.h

@@ -1,3 +1,5 @@
+#include "circle.h"
+
 namespace ShapeImpl
 {
 double area(const Circle &circle);

+ 1 - 1
main.cpp

@@ -12,7 +12,7 @@ int main()
 {
     vector<Shape> geometries;
     geometries.emplace_back(Circle());
-    // geometries.emplace_back(Rectangle());
+    geometries.emplace_back(Rectangle());
 
     for (const auto &shape : geometries)
     {

+ 2 - 2
rectangle_shape.cpp

@@ -1,9 +1,9 @@
+#include "rectangle.h"
 
-// rectangle_shape.cpp
 namespace ShapeImpl
 {
 double area(const Rectangle &rectangle)
 {
     return rectangle.width * rectangle.height;
 }
-} // namespace ShapeImpl
+}