This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
70d98f446e
llvm-project
/
clang-tools-extra
/
cpp11-migrate
/
CMakeLists.txt
5 lines
96 B
CMake
Raw
Normal View
History
Unescape
Escape
Port loop-convert into cpp11-migrate Took existing code from loop-convert tool and made it into a cpp11-migrate transform. Pattern now set for having transform code in subdirectories. Related changes: - Makefile and CMakeLists.txt updated to support source files in subdirectories. - At least one transform must be specified. syntax-only tests removed to reflect this. - TODO: port over loop-convert tests. Reviewers: klimek, silvas llvm-svn: 171481
2013-01-05 02:25:18 +08:00
include_directories
(
${
CMAKE_CURRENT_SOURCE_DIR
}
)
lib-ified core cpp11-migrate functionality to support unit tests Summary: Transform.* and Transforms.* moved to form a new library: libmigrateCore. #includes updated to point to new header locations. To support autoconf build, Cpp11Migrate.cpp moved to new subdirectory 'tool' which also contains build files for creating final binary. CMake and autoconf updated to build the new library and link it with cpp11-migrate and with cpp11-migrate unit tests. Dummy unit tests replaced with simple, but real, tests for Transform's public interface. TODO: Lib-ifying the transforms to further simplify build of cpp11-migrate. llvm-svn: 178785
2013-04-05 04:19:58 +08:00
add_subdirectory
(
tool
)
add_subdirectory
(
Core
)