Compare commits

..

No commits in common. "6ff2cf0d8527f07d571c628ab2c96d4ca1109e17" and "9badee91e7a3919262a8d61f4f3eea91b053bd08" have entirely different histories.

10 changed files with 24 additions and 40 deletions

3
.gitignore vendored
View File

@ -119,5 +119,4 @@ fabric.properties
*.cubin
*.fatbin
.idea/
*build*/
.idea/

View File

@ -2,20 +2,14 @@ cmake_minimum_required(VERSION 3.14)
project(Geometry VERSION 0.1 LANGUAGES CXX)
include(FetchContent)
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
include(CTest)
endif ()
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME OR GEOMETRY_BUILD_TESTING)
add_subdirectory(tests)
endif ()
set(CMAKE_CXX_STANDARD 17)
include(FetchContent)
FetchContent_Declare(
eigen
GIT_REPOSITORY https://gitlab.com/libeigen/eigen.git
@ -23,6 +17,8 @@ FetchContent_Declare(
)
FetchContent_MakeAvailable(eigen)
#include_directories(${PROJECT_SOURCE_DIR}/include ${PROJECT_SOURCE_DIR}/Geometry)
add_subdirectory(src)
add_subdirectory(apps)

View File

@ -1,3 +1,3 @@
add_executable(app main.cpp)
target_link_libraries(app PUBLIC Geometry)
target_link_libraries(app PUBLIC Eigen3::Eigen Geometry)

View File

@ -1,5 +1,5 @@
#include "Geometry/dummy.hpp"
#include "main.hpp"
#include "Geometry/dummy.h"
#include "main.h"
int main(){
cout<<"Hello World"<<endl;
eigenExample();

10
include/Geometry/dummy.h Normal file
View File

@ -0,0 +1,10 @@
//
// Created by nb on 31.12.23.
//
#ifndef GEOMETRY_DUMMY_H
#define GEOMETRY_DUMMY_H
void eigenExample();
#endif //GEOMETRY_DUMMY_H

View File

@ -1,10 +0,0 @@
//
// Created by nb on 31.12.23.
//
#ifndef GEOMETRY_DUMMY_HPP
#define GEOMETRY_DUMMY_HPP
void eigenExample();
#endif //GEOMETRY_DUMMY_HPP

View File

@ -2,8 +2,8 @@
// Created by nb on 31.12.23.
//
#ifndef GEOMETRY_MAIN_HPP
#define GEOMETRY_MAIN_HPP
#ifndef GEOMETRY_MAIN_H
#define GEOMETRY_MAIN_H
#include <iostream>
#include <Eigen/Dense>
@ -12,4 +12,4 @@ using namespace std;
int main();
#endif //GEOMETRY_MAIN_HPP
#endif //GEOMETRY_MAIN_H

View File

@ -1,6 +1,6 @@
set(HEADER_LIST "${Geometry_SOURCE_DIR}/include/Geometry/dummy.hpp")
set(HEADER_LIST "${Geometry_SOURCE_DIR}/include/Geometry/dummy.h")
add_library(Geometry dummy.cpp ${HEADER_LIST})
add_library(Geometry Dummy.cpp ${HEADER_LIST})
target_include_directories(Geometry PUBLIC "${PROJECT_SOURCE_DIR}/include")

View File

@ -1,7 +1,7 @@
//
// Created by nb on 31.12.23.
//
#include "Geometry/dummy.hpp"
#include "Geometry/dummy.h"
#include <Eigen/Dense>
#include <iostream>

View File

@ -1,11 +0,0 @@
FetchContent_Declare(
catch
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
GIT_TAG v2.13.6)
FetchContent_MakeAvailable(catch)
add_executable(testlib testgeometry.cpp)
target_link_libraries(testlib PRIVATE Geometry Catch2::Catch2)
add_test(NAME testlibtest COMMAND testlib)