[ create a new paste ] login | about

Link: http://codepad.org/NRpRDwsP    [ raw code | fork ]

Plain Text, pasted on Aug 10:
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required(VERSION 2.6)
 
Project(bgl_test)
 

FIND_PACKAGE(Boost COMPONENTS required)
 
INCLUDE_DIRECTORIES(${INCLUDE_DIRECTORIES} ${Boost_INCLUDE_DIRS})
LINK_DIRECTORIES(${LINK_DIRECTORIES} ${Boost_LIBRARY_DIRS})
 
ADD_EXECUTABLE(bgl_test circular_dependency.cpp)


Create a new paste based on this one


Comments: