contrib/CMakeLists.txt
author Alpar Juttner <alpar@cs.elte.hu>
Tue, 28 Apr 2015 18:07:44 +0200
changeset 1135 c199e9976d93
permissions -rw-r--r--
Resolve VS and MinGW warnings (#595)
alpar@925
     1
INCLUDE_DIRECTORIES(
alpar@925
     2
  ${PROJECT_SOURCE_DIR}
alpar@925
     3
  ${PROJECT_BINARY_DIR}
alpar@925
     4
)
alpar@925
     5
alpar@925
     6
LINK_DIRECTORIES(
alpar@925
     7
  ${PROJECT_BINARY_DIR}/lemon
alpar@925
     8
)
alpar@925
     9
alpar@925
    10
# Uncomment (and adjust) the following two lines. 'myprog' is the name
alpar@925
    11
# of the final executable ('.exe' will automatically be added to the
alpar@925
    12
# name on Windows) and 'myprog-main.cc' is the source code it is
alpar@925
    13
# compiled from. You can add more source files separated by
alpar@925
    14
# whitespaces. Moreover, you can add multiple similar blocks if you
alpar@925
    15
# want to build more than one executables.
alpar@925
    16
alpar@925
    17
# ADD_EXECUTABLE(myprog myprog-main.cc)
alpar@925
    18
# TARGET_LINK_LIBRARIES(myprog lemon)
alpar@925
    19