Skip to content

Instantly share code, notes, and snippets.

View TheLartians's full-sized avatar

Lars Melchior TheLartians

View GitHub Profile
@TheLartians
TheLartians / CMakeLists.txt
Last active April 24, 2020 13:40
Observe Race
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
# ---- Project ----
project(Playground LANGUAGES CXX)
# ---- Fetch CPM ----
set(CPM_DOWNLOAD_LOCATION "${CMAKE_BINARY_DIR}/cmake/CPM.cmake")
set(CPM_VERSION 0.18)
-- SETTINGS
local arrSize = 500000
-- END SETTINGS
local libTernary = function (condtion, val1, val2)
if condtion then
return val1
else
return val2
end