Skip to content

Commit

Permalink
Set dependencies as required in CMakeLists
Browse files Browse the repository at this point in the history
  • Loading branch information
coldfix committed Jan 10, 2018
1 parent 39b1f00 commit d90ded5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 2.8)

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")

find_package(BISON)
find_package(FLEX)
find_package(GLPK)
find_package(BISON REQUIRED)
find_package(FLEX REQUIRED)
find_package(GLPK REQUIRED)

BISON_TARGET (citip_parser parser.y ${CMAKE_CURRENT_BINARY_DIR}/parser.cxx
COMPILE_FLAGS --defines=${CMAKE_CURRENT_BINARY_DIR}/parser.hxx)
Expand Down

0 comments on commit d90ded5

Please sign in to comment.