This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- SETTINGS | |
local arrSize = 500000 | |
-- END SETTINGS | |
local libTernary = function (condtion, val1, val2) | |
if condtion then | |
return val1 | |
else | |
return val2 | |
end |