Make FilePicker context sensitive default paths persistent over logins.
Also, make newview/statemachine a separate project.
This commit is contained in:
41
indra/newview/statemachine/CMakeLists.txt
Normal file
41
indra/newview/statemachine/CMakeLists.txt
Normal file
@@ -0,0 +1,41 @@
|
||||
# -*- cmake -*-
|
||||
|
||||
project(statemachine)
|
||||
|
||||
include(00-Common)
|
||||
include(LLCommon)
|
||||
include(LLPlugin)
|
||||
include(LLMessage) # This is needed by LLPlugin.
|
||||
include(LLMath)
|
||||
include(LLVFS)
|
||||
include(LLXML)
|
||||
|
||||
include_directories(
|
||||
${CMAKE_SOURCE_DIR}/newview
|
||||
${LLCOMMON_INCLUDE_DIRS}
|
||||
${LLPLUGIN_INCLUDE_DIRS}
|
||||
${LLMESSAGE_INCLUDE_DIRS}
|
||||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLVFS_INCLUDE_DIRS}
|
||||
${LLXML_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
set(statemachine_SOURCE_FILES
|
||||
aistatemachine.cpp
|
||||
aifilepicker.cpp
|
||||
)
|
||||
|
||||
set(statemachine_HEADER_FILES
|
||||
CMakeLists.txt
|
||||
aistatemachine.h
|
||||
aifilepicker.h
|
||||
aidirpicker.h
|
||||
)
|
||||
|
||||
set_source_files_properties(${statemachine_HEADER_FILES}
|
||||
PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
|
||||
list(APPEND statemachine_SOURCE_FILES ${statemachine_HEADER_FILES})
|
||||
|
||||
add_library (statemachine ${statemachine_SOURCE_FILES})
|
||||
add_dependencies(statemachine prepare)
|
||||
Reference in New Issue
Block a user