So I am used to IDE's like CLion where we use CMakeLists.txt to tell the compiler flags, set things etc. Is there any way to do that in Coderunner? I see that I can add flags, but is there any way add the example code below?
cmake_minimum_required(VERSION 2.8)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++1y -Wall")
if(APPLE)
set(OPENSSL_ROOT_DIR "/usr/local/opt/openssl")
endif()
find_package(OpenSSL REQUIRED)
include_directories(${OPENSSL_INCLUDE_DIR})
add_executable(project-test main.cpp)
target_link_libraries(project-test ${OPENSSL_CRYPTO_LIBRARIES})