Lines Matching refs:set
1 set(CMAKE_SYSTEM_NAME Windows)
2 set(CMAKE_SYSTEM_PROCESSOR x86_64)
4 set(THREADX_ARCH "win32")
5 set(THREADX_TOOLCHAIN "vs_2019")
7 set(WIN32_FLAGS "")
9 set(CMAKE_C_FLAGS "${WIN32_FLAGS} " CACHE INTERNAL "c compiler flags")
10 set(CMAKE_CXX_FLAGS "${WIN32_FLAGS} -fno-rtti -fno-exceptions" CACHE INTERNAL "cxx compiler flags")
11 set(CMAKE_ASM_FLAGS "${WIN32_FLAGS} -x assembler-with-cpp" CACHE INTERNAL "asm compiler flags")
12 set(CMAKE_EXE_LINKER_FLAGS "${WIN32_FLAGS} ${LD_FLAGS}" CACHE INTERNAL "exe link flags")
14 # this makes the test compiles use static library option so that we don't need to pre-set linker fl…
15 set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)