chore: add functor

main
mandlm 2024-03-15 10:28:47 +01:00
parent 68da0a4b6c
commit 26e9b317ec
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
4 changed files with 31 additions and 0 deletions

21
Functor/CMakeLists.txt Normal file
View File

@ -0,0 +1,21 @@
cmake_minimum_required(VERSION 3.20)
project(
Functor
VERSION 0.1.0
LANGUAGES CXX)
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/../cmake")
include(ExportCompileCommands)
include(sccache)
add_executable(Functor main.cpp)
target_compile_features(Functor PUBLIC cxx_std_20)
set_target_properties(
Functor
PROPERTIES ARCHIVE_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/bin"
RUNTIME_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/bin"
RUNTIME_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/bin")

1
Functor/bootstrap.sh Symbolic link
View File

@ -0,0 +1 @@
../scripts/bootstrap.sh

1
Functor/build.sh Symbolic link
View File

@ -0,0 +1 @@
../scripts/build.sh

8
Functor/main.cpp Normal file
View File

@ -0,0 +1,8 @@
#include <iostream>
int main(int argc, char *argv[]) {
std::cout << "Functor" << std::endl;
return EXIT_SUCCESS;
}