From d54c2033eaaad5b6f9340b7cbaf8b3b037fb3cbe Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 17 Dec 2025 14:53:59 +0100 Subject: chore: updated file structure. Signed-off-by: Amlal El Mahrouss --- examples/smart_ptr_example/CMakeLists.txt | 15 --------------- examples/smart_ptr_example/example.cc | 10 ---------- 2 files changed, 25 deletions(-) delete mode 100644 examples/smart_ptr_example/CMakeLists.txt delete mode 100644 examples/smart_ptr_example/example.cc (limited to 'examples/smart_ptr_example') diff --git a/examples/smart_ptr_example/CMakeLists.txt b/examples/smart_ptr_example/CMakeLists.txt deleted file mode 100644 index 6584ad2..0000000 --- a/examples/smart_ptr_example/CMakeLists.txt +++ /dev/null @@ -1,15 +0,0 @@ - -cmake_minimum_required(VERSION 3.15...3.31) - -project( - SmartPtrExample - VERSION 1.0 - LANGUAGES CXX) - -find_package(Boost REQUIRED COMPONENTS container) - -add_executable(SmartPtrExample example.cc) - -set_property(TARGET SmartPtrExample PROPERTY CXX_STANDARD 20) -target_include_directories(SmartPtrExample PUBLIC ../../include/) -target_link_libraries(SmartPtrExample PRIVATE Boost::container) diff --git a/examples/smart_ptr_example/example.cc b/examples/smart_ptr_example/example.cc deleted file mode 100644 index ef1a865..0000000 --- a/examples/smart_ptr_example/example.cc +++ /dev/null @@ -1,10 +0,0 @@ -#include -#include -#include - -int main(int argc, char** argv) -{ - ocl::shared_ptr smart = ocl::delete_ptr(&std::cout); - - return 0; -} -- cgit v1.2.3