simple_allocator

A simple, poorly-performing memory allocator
git clone https://git.bracken.jp/simple_allocator.git
Log | Files | Refs | Submodules | README | LICENSE

CMakeLists.txt (304B)


      1 cmake_minimum_required(VERSION 3.0)
      2 
      3 project(foobar
      4   VERSION 0.0.1
      5 )
      6 
      7 set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
      8 set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
      9 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
     10 
     11 add_subdirectory(src)
     12 add_subdirectory(third_party)