Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
extras
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Openvibe Group
extras
Merge requests
!162
Resolve "Fix: MSVC2017 32 bits build"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Fix: MSVC2017 32 bits build"
142-fix-msvc2017-32-bits-build
into
development
Overview
0
Commits
1
Changes
1
Merged
Thomas PRAMPART
requested to merge
142-fix-msvc2017-32-bits-build
into
development
3 years ago
Overview
0
Commits
1
Changes
1
Expand
Closes
#142 (closed)
Edited
3 years ago
by
Thomas PRAMPART
0
0
Merge request reports
Compare
development
development (base)
and
latest version
latest version
df70e001
1 commit,
3 years ago
1 file
+
4
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
cmake-modules/FindThirdPartyPThread.cmake
+
4
−
1
Options
@@ -23,7 +23,10 @@ IF(WIN32)
@@ -23,7 +23,10 @@ IF(WIN32)
TARGET_LINK_LIBRARIES
(
${
PROJECT_NAME
}
${
WS232_LIB
}
)
TARGET_LINK_LIBRARIES
(
${
PROJECT_NAME
}
${
WS232_LIB
}
)
TARGET_LINK_LIBRARIES
(
${
PROJECT_NAME
}
${
PTHREAD_LIB
}
)
TARGET_LINK_LIBRARIES
(
${
PROJECT_NAME
}
${
PTHREAD_LIB
}
)
INSTALL
(
PROGRAMS
"
${
PTHREAD_DLL
}
"
DESTINATION
${
DIST_BINDIR
}
)
INSTALL
(
PROGRAMS
"
${
PTHREAD_DLL
}
"
DESTINATION
${
DIST_BINDIR
}
)
ADD_DEFINITIONS
(
-DTARGET_HAS_PThread
)
ADD_DEFINITIONS
(
-DTARGET_HAS_PThread
)
if
(
MSVC_VERSION GREATER_EQUAL 1900
)
ADD_DEFINITIONS
(
"-DHAVE_STRUCT_TIMESPEC"
)
# Avoid Pthread to redefine timespec
endif
()
ELSE
()
ELSE
()
OV_PRINT
(
OV_PRINTED
" FAILED to find PThreads"
)
OV_PRINT
(
OV_PRINTED
" FAILED to find PThreads"
)
ENDIF
()
ENDIF
()
Loading