Use the new script to sort the includes of every file under lib.
[oota-llvm.git] / lib / Target / X86 / Disassembler / CMakeLists.txt
1 include_directories( ${CMAKE_CURRENT_BINARY_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/.. )
2
3 add_llvm_library(LLVMX86Disassembler
4   X86Disassembler.cpp
5   X86DisassemblerDecoder.c
6   )
7
8 # workaround for hanging compilation on MSVC9 and 10
9 if( MSVC_VERSION EQUAL 1400 OR MSVC_VERSION EQUAL 1500 OR MSVC_VERSION EQUAL 1600 )
10 set_property(
11   SOURCE X86Disassembler.cpp
12   PROPERTY COMPILE_FLAGS "/Od"
13   )
14 endif()
15
16 add_dependencies(LLVMX86Disassembler X86CommonTableGen)