We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7288d8d commit ae6b051Copy full SHA for ae6b051
libompd/src/CMakeLists.txt
@@ -1,8 +1,12 @@
1
project (libompd)
2
3
+message( "LIBOMP_INCLUDE_DIR = ${LIBOMP_INCLUDE_DIR}" )
4
add_library (ompd SHARED TargetValue.cpp omp-debug.cpp)
5
6
+add_dependencies(ompd omp) # ensure generated import library is created first
7
+
8
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
9
+message( "CMAKE_CXX_FLAGS = ${CMAKE_CXX_FLAGS}" )
10
11
include_directories (
12
${CMAKE_CURRENT_SOURCE_DIR}
0 commit comments