Initial commit
This commit is contained in:
commit
4f4397b3e1
48 changed files with 2002 additions and 0 deletions
20
VectorFiller/CMakeLists.txt
Normal file
20
VectorFiller/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
cmake_minimum_required(VERSION 3.30)
|
||||
project(NimGameProject LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
if (CMAKE_EXPORT_COMPILE_COMMANDS)
|
||||
set(CMAKE_CXX_STANDARD_INCLUDE_DIRECTORIES ${CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES})
|
||||
endif()
|
||||
|
||||
set (THREADS_PREFER_PTHREAD_FLAG TRUE)
|
||||
|
||||
add_executable(filler main.cpp)
|
||||
|
||||
find_package(Threads REQUIRED)
|
||||
target_link_libraries(filler PRIVATE Threads::Threads)
|
||||
|
||||
find_library(TBB tbb)
|
||||
if (TBB)
|
||||
target_link_libraries(filler PRIVATE ${TBB})
|
||||
endif()
|
||||
Loading…
Add table
Add a link
Reference in a new issue