mikerourke
8/15/2017 - 8:03 PM

Learning How to Learn WebAssembly: CMakeLists File

Learning How to Learn WebAssembly: CMakeLists File

# This is the version that came packaged with my version of CLion:
cmake_minimum_required(VERSION 3.7)

# I'm giving the project an arbitrary name for demonstration purposes,
# you can name it whatever you want:
project(example)

# Create a src directory at the root level of your project and add a
# file with whatever name you want (I used the project name for
# simplicity):
add_executable(example src/example.c)