Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ACGL
acgl
Commits
7b5df1f5
Commit
7b5df1f5
authored
Aug 11, 2011
by
Lars Krecklau
Browse files
Changed variable INCLUDE_FILES to HEADER_FILES in the CMakeLists
parent
e178f74a
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
7b5df1f5
...
...
@@ -52,7 +52,7 @@ FOREACH(OPENGL_SUPPORT ${OPENGL_SUPPORT_LIST} )
# Find all used files of certain file-types
FILE
(
GLOB_RECURSE SOURCE_FILES
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/src/*.cc"
)
FILE
(
GLOB_RECURSE
INCLU
DE_FILES
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/include/*.hh"
)
FILE
(
GLOB_RECURSE
HEA
DE
R
_FILES
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/include/*.hh"
)
# Add ACGL to the include path
INCLUDE_DIRECTORIES
(
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/include"
)
...
...
@@ -81,7 +81,7 @@ FOREACH(OPENGL_SUPPORT ${OPENGL_SUPPORT_LIST} )
################################################################################
# Define the Project, add all required sources and dependencies to it
ADD_LIBRARY
(
AC
${
OPENGL_SUPPORT
}${
COMPILE_POSTFIX
}
STATIC
${
SOURCE_FILES
}
${
INCLU
DE_FILES
}
)
ADD_LIBRARY
(
AC
${
OPENGL_SUPPORT
}${
COMPILE_POSTFIX
}
STATIC
${
SOURCE_FILES
}
${
HEA
DE
R
_FILES
}
)
TARGET_LINK_LIBRARIES
(
AC
${
OPENGL_SUPPORT
}${
COMPILE_POSTFIX
}
${
LIBRARIES
}
)
ENDFOREACH
()
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment