Skip to content

Instantly share code, notes, and snippets.

@mikerourke
Last active August 15, 2017 20:23
Show Gist options
  • Save mikerourke/f25be7c880cca62c34beb2d6cef31030 to your computer and use it in GitHub Desktop.
Save mikerourke/f25be7c880cca62c34beb2d6cef31030 to your computer and use it in GitHub Desktop.
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment