Skip to content

Commit

Permalink
Using CMake now and renames samples to examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianishere committed May 1, 2013
1 parent 45e8f79 commit e3cbcde
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 24 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG
@@ -1,3 +1,8 @@
Version 0.1.3
=============
Renamed samples to examples.
Using CMake now.

Version 0.1.2
=============
Added pipe support - now you can pipe output from other programs into the interpreter!
Expand All @@ -8,4 +13,4 @@ Tweaked output messages

Version 0.1.0
=============
First stable release
First stable release
11 changes: 11 additions & 0 deletions CMakeLists.txt
@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 2.6)

# Project name
project(brainfuck C)

set (brainfuck_VERSION_MAJOR 0)
set (brainfuck_VERSION_MINOR 1)
set (brainfuck_VERSION_PATCH 3)

add_definitions("-Wall")
add_executable(brainfuck src/brainfuck_shell.c src/brainfuck.c src/brainfuck.h)
23 changes: 0 additions & 23 deletions Makefile

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e3cbcde

Please sign in to comment.