summaryrefslogtreecommitdiffhomepage
path: root/cmake/unix.cmake
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-07-12 07:09:46 +0200
committerStanislaw Halik <sthalik@misaki.pl>2015-07-12 07:09:46 +0200
commitc986731a379191e096a965f4d741bc3853820b8f (patch)
treef50ece78a831ac20e9a1e5994854f196d8980fd8 /cmake/unix.cmake
parent78e20c5173ae722ddac1499df25e40a3ab6d0f3e (diff)
parentf396490f2d15d699d8299b91406a9791b38c7237 (diff)
Merge branch 'unstable' into trackhat-ui
Diffstat (limited to 'cmake/unix.cmake')
-rw-r--r--cmake/unix.cmake19
1 files changed, 19 insertions, 0 deletions
diff --git a/cmake/unix.cmake b/cmake/unix.cmake
new file mode 100644
index 00000000..cd117bbc
--- /dev/null
+++ b/cmake/unix.cmake
@@ -0,0 +1,19 @@
+# this file only serves as toolchain file when specified so explicitly
+# when building the software. from repository's root directory:
+# mkdir build && cd build && cmake -DCMAKE_TOOLCHAIN_FILE=$(pwd)/../cmake/mingw-w64.cmake
+# -sh 20140922
+
+SET(CMAKE_C_COMPILER cc)
+SET(CMAKE_CXX_COMPILER c++)
+
+SET(CMAKE_FIND_ROOT_PATH /usr)
+
+set(cpu "-O3 -march=native -ffast-math -g")
+set(CFLAGS-OVERRIDE "" CACHE STRING "")
+
+set(CMAKE_C_FLAGS_RELEASE "${cpu} ${CFLAGS-OVERRIDE}" CACHE STRING "" FORCE)
+set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE} CACHE STRING "" FORCE)
+set(CMAKE_SHARED_LINKER_FLAGS_RELEASE "${cpu} ${CFLAGS-OVERRIDE}" CACHE STRING "" FORCE)
+set(CMAKE_EXE_LINKER_FLAGS_RELEASE ${CMAKE_SHARED_LINKER_FLAGS_RELEASE} CACHE STRING "" FORCE)
+set(CMAKE_MODULE_LINKER_FLAGS_RELEASE ${CMAKE_SHARED_LINKER_FLAGS_RELEASE} CACHE STRING "" FORCE)
+set(CMAKE_BUILD_TYPE "RELEASE" CACHE STRING "" FORCE)