# HG changeset patch # User Joshua Kahn # Date 1445127219 14400 # Node ID ba786304afb3ce17d6fb77cac246a9d04b7ae058 # Parent 1a6520cd3e0da37e025500aacd2bd4eea68fdf5c build: put build products in build/ Signed-off-by: Joshua Kahn Signed-off-by: Josef 'Jeff' Sipek diff -r 1a6520cd3e0d -r ba786304afb3 .gitignore --- a/.gitignore Sat Oct 17 19:25:41 2015 -0400 +++ b/.gitignore Sat Oct 17 20:13:39 2015 -0400 @@ -5,6 +5,8 @@ cmake_install.cmake install_manifest.txt +build/ + proto .*.swp diff -r 1a6520cd3e0d -r ba786304afb3 CMakeLists.txt --- a/CMakeLists.txt Sat Oct 17 19:25:41 2015 -0400 +++ b/CMakeLists.txt Sat Oct 17 20:13:39 2015 -0400 @@ -1,5 +1,6 @@ # # Copyright (c) 2015 Josef 'Jeff' Sipek +# Copyright (c) 2015 Joshua Kahn # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -31,6 +32,8 @@ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-inline-functions-called-once") set(CMAKE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/cmake") +set(EXECUTABLE_OUTPUT_PATH "${CMAKE_BINARY_DIR}/build") +set(LIBRARY_OUTPUT_PATH "${CMAKE_BINARY_DIR}/build") include(cmake/config.cmake) include(cmake/rpcgen.cmake)