Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
3bf45f5f
Commit
3bf45f5f
authored
Apr 14, 2015
by
Daniel Agar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake remove unnecessary dependencies
-target_link_libraries already adds the dependencie
parent
193f3b09
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
2 deletions
+0
-2
test/unittests/CMakeLists.txt
test/unittests/CMakeLists.txt
+0
-1
tools/CMakeLists.txt
tools/CMakeLists.txt
+0
-1
No files found.
test/unittests/CMakeLists.txt
View file @
3bf45f5f
...
...
@@ -10,7 +10,6 @@ add_custom_target(unittests)
macro
(
add_unittest unittest
)
add_executable
(
${
unittest
}
_unittest EXCLUDE_FROM_ALL
${
unittest
}
.cpp $<TARGET_OBJECTS:PYSTON_OBJECTS> $<TARGET_OBJECTS:FROM_CPYTHON>
)
target_link_libraries
(
${
unittest
}
_unittest stdlib sqlite3 gmp ssl crypto readline pypa double-conversion unwind gtest gtest_main
${
LLVM_LIBS
}
${
LIBLZMA_LIBRARIES
}
)
add_dependencies
(
${
unittest
}
_unittest gtest gtest_main
)
add_dependencies
(
unittests
${
unittest
}
_unittest
)
endmacro
()
...
...
tools/CMakeLists.txt
View file @
3bf45f5f
...
...
@@ -5,7 +5,6 @@ llvm_map_components_to_libnames(LLVM_LIBS_EXTRA BitWriter)
add_executable
(
publicize publicize.cpp
)
target_link_libraries
(
publicize curses dl pthread
${
LLVM_LIBS
}
${
LLVM_LIBS_EXTRA
}
)
add_dependencies
(
publicize
${
LLVM_LIBS_EXTRA
}
)
include_directories
(
${
CMAKE_SOURCE_DIR
}
/src
)
add_executable
(
astprint EXCLUDE_FROM_ALL astprint.cpp $<TARGET_OBJECTS:PYSTON_OBJECTS> $<TARGET_OBJECTS:FROM_CPYTHON>
)
...
...
Write
Preview
Markdown
is supported
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