diff options
author | Guillermo Ramos | 2012-03-25 01:46:48 +0100 |
---|---|---|
committer | Guillermo Ramos | 2012-03-25 01:46:48 +0100 |
commit | 313dfa393b8444831cb6b7c7932cce3ce090f05c (patch) | |
tree | dd17d5b2be37a4edb28429725c36763a7140b872 | |
parent | 931b47a746e90c08e312472292c4781229a34f86 (diff) | |
download | mjolnir-313dfa393b8444831cb6b7c7932cce3ce090f05c.tar.gz |
CMakeLists
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..b3f663b --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required (VERSION 2.8) + +project (Mjolnir C) +add_executable (mjolnir mjolnir.c) +target_link_libraries (mjolnir m) +install (TARGETS mjolnir RUNTIME DESTINATION bin) |